├── .DS_Store ├── Alexa HTTP:HTTPS Requests Tutorial ├── .DS_Store ├── speechAssets │ ├── intentSchema.json │ └── sampleUtterances.txt ├── src │ ├── .DS_Store │ ├── Archive.zip │ ├── index.js │ └── node_modules │ │ ├── .bin │ │ ├── har-validator │ │ ├── sshpk-conv │ │ ├── sshpk-sign │ │ ├── sshpk-verify │ │ └── uuid │ │ ├── ansi-regex │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ │ ├── ansi-styles │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ │ ├── asn1 │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── ber │ │ │ │ ├── errors.js │ │ │ │ ├── index.js │ │ │ │ ├── reader.js │ │ │ │ ├── types.js │ │ │ │ └── writer.js │ │ │ └── index.js │ │ ├── package.json │ │ └── tst │ │ │ └── ber │ │ │ ├── reader.test.js │ │ │ └── writer.test.js │ │ ├── assert-plus │ │ ├── AUTHORS │ │ ├── CHANGES.md │ │ ├── README.md │ │ ├── assert.js │ │ └── package.json │ │ ├── asynckit │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── abort.js │ │ │ ├── async.js │ │ │ ├── defer.js │ │ │ ├── iterate.js │ │ │ ├── readable_asynckit.js │ │ │ ├── readable_parallel.js │ │ │ ├── readable_serial.js │ │ │ ├── readable_serial_ordered.js │ │ │ ├── state.js │ │ │ ├── streamify.js │ │ │ └── terminator.js │ │ ├── package.json │ │ ├── parallel.js │ │ ├── serial.js │ │ ├── serialOrdered.js │ │ └── stream.js │ │ ├── aws-sign2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ │ ├── aws4 │ │ ├── .npmignore │ │ ├── .tern-port │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── aws4.js │ │ ├── lru.js │ │ └── package.json │ │ ├── bcrypt-pbkdf │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ │ ├── boom │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── images │ │ │ └── boom.png │ │ ├── lib │ │ │ └── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ │ ├── caseless │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ │ ├── chalk │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ │ ├── combined-stream │ │ ├── License │ │ ├── Readme.md │ │ ├── lib │ │ │ └── combined_stream.js │ │ └── package.json │ │ ├── commander │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ │ ├── cryptiles │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ │ ├── dashdash │ │ ├── README.md │ │ ├── etc │ │ │ └── dashdash.bash_completion.in │ │ ├── lib │ │ │ └── dashdash.js │ │ ├── node_modules │ │ │ └── assert-plus │ │ │ │ ├── AUTHORS │ │ │ │ ├── CHANGES.md │ │ │ │ ├── README.md │ │ │ │ ├── assert.js │ │ │ │ └── package.json │ │ └── package.json │ │ ├── delayed-stream │ │ ├── .npmignore │ │ ├── License │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── lib │ │ │ └── delayed_stream.js │ │ └── package.json │ │ ├── ecc-jsbn │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── LICENSE-jsbn │ │ │ ├── ec.js │ │ │ └── sec.js │ │ ├── package.json │ │ └── test.js │ │ ├── escape-string-regexp │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ │ ├── extend │ │ ├── .eslintrc │ │ ├── .jscs.json │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── component.json │ │ ├── index.js │ │ └── package.json │ │ ├── extsprintf │ │ ├── .gitmodules │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.deps │ │ ├── Makefile.targ │ │ ├── README.md │ │ ├── examples │ │ │ └── simple.js │ │ ├── jsl.node.conf │ │ ├── lib │ │ │ └── extsprintf.js │ │ └── package.json │ │ ├── forever-agent │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ │ ├── form-data │ │ ├── License │ │ ├── README.md │ │ ├── lib │ │ │ ├── browser.js │ │ │ ├── form_data.js │ │ │ └── populate.js │ │ └── package.json │ │ ├── generate-function │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── example.js │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ │ ├── generate-object-property │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ │ ├── getpass │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ ├── node_modules │ │ │ └── assert-plus │ │ │ │ ├── AUTHORS │ │ │ │ ├── CHANGES.md │ │ │ │ ├── README.md │ │ │ │ ├── assert.js │ │ │ │ └── package.json │ │ └── package.json │ │ ├── graceful-readlink │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ │ ├── har-validator │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── har-validator │ │ ├── lib │ │ │ ├── async.js │ │ │ ├── error.js │ │ │ ├── index.js │ │ │ ├── runner.js │ │ │ └── schemas │ │ │ │ ├── cache.json │ │ │ │ ├── cacheEntry.json │ │ │ │ ├── content.json │ │ │ │ ├── cookie.json │ │ │ │ ├── creator.json │ │ │ │ ├── entry.json │ │ │ │ ├── har.json │ │ │ │ ├── index.js │ │ │ │ ├── log.json │ │ │ │ ├── page.json │ │ │ │ ├── pageTimings.json │ │ │ │ ├── postData.json │ │ │ │ ├── record.json │ │ │ │ ├── request.json │ │ │ │ ├── response.json │ │ │ │ └── timings.json │ │ └── package.json │ │ ├── has-ansi │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ │ ├── hawk │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── dist │ │ │ └── client.js │ │ ├── example │ │ │ └── usage.js │ │ ├── images │ │ │ ├── hawk.png │ │ │ └── logo.png │ │ ├── lib │ │ │ ├── browser.js │ │ │ ├── client.js │ │ │ ├── crypto.js │ │ │ ├── index.js │ │ │ ├── server.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── browser.js │ │ │ ├── client.js │ │ │ ├── crypto.js │ │ │ ├── index.js │ │ │ ├── readme.js │ │ │ ├── server.js │ │ │ ├── uri.js │ │ │ └── utils.js │ │ ├── hoek │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── images │ │ │ └── hoek.png │ │ ├── lib │ │ │ ├── escape.js │ │ │ └── index.js │ │ ├── package.json │ │ └── test │ │ │ ├── escaper.js │ │ │ ├── index.js │ │ │ └── modules │ │ │ ├── ignore.txt │ │ │ ├── test1.js │ │ │ ├── test2.js │ │ │ └── test3.js │ │ ├── http-signature │ │ ├── .dir-locals.el │ │ ├── .npmignore │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── http_signing.md │ │ ├── lib │ │ │ ├── index.js │ │ │ ├── parser.js │ │ │ ├── signer.js │ │ │ ├── utils.js │ │ │ └── verify.js │ │ └── package.json │ │ ├── is-my-json-valid │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example.js │ │ ├── formats.js │ │ ├── index.js │ │ ├── package.json │ │ ├── require.js │ │ └── test │ │ │ ├── fixtures │ │ │ └── cosmic.js │ │ │ ├── json-schema-draft4 │ │ │ ├── additionalItems.json │ │ │ ├── additionalProperties.json │ │ │ ├── allOf.json │ │ │ ├── anyOf.json │ │ │ ├── bignum.json │ │ │ ├── default.json │ │ │ ├── definitions.json │ │ │ ├── dependencies.json │ │ │ ├── enum.json │ │ │ ├── format.json │ │ │ ├── items.json │ │ │ ├── maxItems.json │ │ │ ├── maxLength.json │ │ │ ├── maxProperties.json │ │ │ ├── maximum.json │ │ │ ├── minItems.json │ │ │ ├── minLength.json │ │ │ ├── minProperties.json │ │ │ ├── minimum.json │ │ │ ├── multipleOf.json │ │ │ ├── not.json │ │ │ ├── nullAndFormat.json │ │ │ ├── nullAndObject.json │ │ │ ├── oneOf.json │ │ │ ├── pattern.json │ │ │ ├── patternProperties.json │ │ │ ├── properties.json │ │ │ ├── ref.json │ │ │ ├── refRemote.json │ │ │ ├── required.json │ │ │ ├── type.json │ │ │ └── uniqueItems.json │ │ │ ├── json-schema.js │ │ │ └── misc.js │ │ ├── is-property │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── is-property.js │ │ └── package.json │ │ ├── is-typedarray │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ │ ├── isstream │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── isstream.js │ │ ├── package.json │ │ └── test.js │ │ ├── jodid25519 │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── AUTHORS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── almond.0 │ │ ├── almond.1 │ │ ├── index.js │ │ ├── jsdoc.json │ │ ├── lib │ │ │ ├── core.js │ │ │ ├── curve255.js │ │ │ ├── dh.js │ │ │ ├── eddsa.js │ │ │ └── utils.js │ │ └── package.json │ │ ├── jsbn │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example.html │ │ ├── example.js │ │ ├── index.js │ │ └── package.json │ │ ├── json-schema │ │ ├── README.md │ │ ├── draft-00 │ │ │ ├── hyper-schema │ │ │ ├── json-ref │ │ │ ├── links │ │ │ └── schema │ │ ├── draft-01 │ │ │ ├── hyper-schema │ │ │ ├── json-ref │ │ │ ├── links │ │ │ └── schema │ │ ├── draft-02 │ │ │ ├── hyper-schema │ │ │ ├── json-ref │ │ │ ├── links │ │ │ └── schema │ │ ├── draft-03 │ │ │ ├── examples │ │ │ │ ├── address │ │ │ │ ├── calendar │ │ │ │ ├── card │ │ │ │ ├── geo │ │ │ │ └── interfaces │ │ │ ├── hyper-schema │ │ │ ├── json-ref │ │ │ ├── links │ │ │ └── schema │ │ ├── draft-04 │ │ │ ├── hyper-schema │ │ │ ├── links │ │ │ └── schema │ │ ├── draft-zyp-json-schema-03.xml │ │ ├── draft-zyp-json-schema-04.xml │ │ ├── lib │ │ │ ├── links.js │ │ │ └── validate.js │ │ ├── package.json │ │ └── test │ │ │ └── tests.js │ │ ├── json-stringify-safe │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── package.json │ │ ├── stringify.js │ │ └── test │ │ │ ├── mocha.opts │ │ │ └── stringify_test.js │ │ ├── jsonpointer │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── benchmark.js │ │ ├── jsonpointer.js │ │ ├── package.json │ │ └── test.js │ │ ├── jsprim │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── jsprim.js │ │ └── package.json │ │ ├── mime-db │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── db.json │ │ ├── index.js │ │ └── package.json │ │ ├── mime-types │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ │ ├── node-uuid │ │ ├── .npmignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── benchmark │ │ │ ├── README.md │ │ │ ├── bench.gnu │ │ │ ├── bench.sh │ │ │ ├── benchmark-native.c │ │ │ └── benchmark.js │ │ ├── bin │ │ │ └── uuid │ │ ├── bower.json │ │ ├── component.json │ │ ├── package.json │ │ ├── test │ │ │ ├── compare_v1.js │ │ │ ├── test.html │ │ │ └── test.js │ │ └── uuid.js │ │ ├── oauth-sign │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ │ ├── pinkie-promise │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ │ ├── pinkie │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ │ ├── punycode │ │ ├── LICENSE-MIT.txt │ │ ├── README.md │ │ ├── package.json │ │ └── punycode.js │ │ ├── qs │ │ ├── .eslintignore │ │ ├── .eslintrc │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ └── qs.js │ │ ├── lib │ │ │ ├── formats.js │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── .eslintrc │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ │ ├── request │ │ ├── .eslintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codecov.yml │ │ ├── index.js │ │ ├── lib │ │ │ ├── auth.js │ │ │ ├── cookies.js │ │ │ ├── getProxyFromURI.js │ │ │ ├── har.js │ │ │ ├── helpers.js │ │ │ ├── multipart.js │ │ │ ├── oauth.js │ │ │ ├── querystring.js │ │ │ ├── redirect.js │ │ │ └── tunnel.js │ │ ├── package.json │ │ └── request.js │ │ ├── sntp │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── examples │ │ │ ├── offset.js │ │ │ └── time.js │ │ ├── index.js │ │ ├── lib │ │ │ └── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ │ ├── sshpk │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ ├── sshpk-conv │ │ │ ├── sshpk-sign │ │ │ └── sshpk-verify │ │ ├── lib │ │ │ ├── algs.js │ │ │ ├── certificate.js │ │ │ ├── dhe.js │ │ │ ├── ed-compat.js │ │ │ ├── errors.js │ │ │ ├── fingerprint.js │ │ │ ├── formats │ │ │ │ ├── auto.js │ │ │ │ ├── openssh-cert.js │ │ │ │ ├── pem.js │ │ │ │ ├── pkcs1.js │ │ │ │ ├── pkcs8.js │ │ │ │ ├── rfc4253.js │ │ │ │ ├── ssh-private.js │ │ │ │ ├── ssh.js │ │ │ │ ├── x509-pem.js │ │ │ │ └── x509.js │ │ │ ├── identity.js │ │ │ ├── index.js │ │ │ ├── key.js │ │ │ ├── private-key.js │ │ │ ├── signature.js │ │ │ ├── ssh-buffer.js │ │ │ └── utils.js │ │ ├── man │ │ │ └── man1 │ │ │ │ ├── sshpk-conv.1 │ │ │ │ ├── sshpk-sign.1 │ │ │ │ └── sshpk-verify.1 │ │ ├── node_modules │ │ │ └── assert-plus │ │ │ │ ├── AUTHORS │ │ │ │ ├── CHANGES.md │ │ │ │ ├── README.md │ │ │ │ ├── assert.js │ │ │ │ └── package.json │ │ └── package.json │ │ ├── stringstream │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── example.js │ │ ├── package.json │ │ └── stringstream.js │ │ ├── strip-ansi │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ │ ├── supports-color │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ │ ├── tough-cookie │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── cookie.js │ │ │ ├── memstore.js │ │ │ ├── pathMatch.js │ │ │ ├── permuteDomain.js │ │ │ ├── pubsuffix.js │ │ │ └── store.js │ │ └── package.json │ │ ├── tunnel-agent │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ │ ├── tweetnacl │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── COPYING.txt │ │ ├── README.md │ │ ├── nacl-fast.js │ │ ├── nacl-fast.min.js │ │ ├── nacl.js │ │ ├── nacl.min.js │ │ └── package.json │ │ ├── verror │ │ ├── .gitmodules │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.targ │ │ ├── README.md │ │ ├── examples │ │ │ ├── levels-verror.js │ │ │ ├── levels-werror.js │ │ │ ├── varargs.js │ │ │ ├── verror.js │ │ │ └── werror.js │ │ ├── jsl.node.conf │ │ ├── lib │ │ │ └── verror.js │ │ ├── package.json │ │ └── tests │ │ │ ├── tst.inherit.js │ │ │ ├── tst.verror.js │ │ │ └── tst.werror.js │ │ └── xtend │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── LICENCE │ │ ├── Makefile │ │ ├── README.md │ │ ├── immutable.js │ │ ├── mutable.js │ │ ├── package.json │ │ └── test.js └── starterIndex.js ├── Alexa Part I ├── .DS_Store └── speechAssets │ ├── intentSchema.json │ └── sampleUtterances.txt ├── Alexa Part II ├── .DS_Store ├── ReindeerFacts │ ├── .DS_Store │ ├── speechAssets │ │ ├── intentSchema.json │ │ └── sampleUtterances.txt │ └── src │ │ ├── .DS_Store │ │ ├── index.js │ │ └── index.js.zip └── Starter for Part 2 │ └── index_start.js ├── Angular Routing 2 - Parameters in 8 ├── .DS_Store ├── end_code │ ├── .DS_Store │ ├── index.html │ ├── js │ │ ├── .DS_Store │ │ ├── app.js │ │ └── controllers │ │ │ ├── AboutMeController.js │ │ │ └── SinglePostController.js │ └── views │ │ ├── aboutme.html │ │ ├── contact.html │ │ ├── home.html │ │ ├── post.html │ │ └── posts.html └── start_code │ ├── .DS_Store │ ├── index.html │ ├── js │ ├── .DS_Store │ ├── app.js │ └── controllers │ │ ├── .DS_Store │ │ └── AboutMeController.js │ └── views │ ├── .DS_Store │ ├── aboutme.html │ ├── contact.html │ ├── home.html │ └── posts.html ├── Angular Routing in 14 ├── .DS_Store ├── end_code │ ├── .DS_Store │ ├── index.html │ ├── js │ │ ├── .DS_Store │ │ ├── app.js │ │ └── controllers │ │ │ └── AboutMeController.js │ └── views │ │ ├── aboutme.html │ │ ├── contact.html │ │ ├── home.html │ │ └── posts.html └── start_code │ ├── .DS_Store │ ├── index.html │ └── js │ ├── .DS_Store │ └── app.js ├── Angular Services in 12 ├── .DS_Store ├── after │ ├── .DS_Store │ ├── index.html │ └── js │ │ ├── .DS_Store │ │ ├── app.js │ │ ├── controllers │ │ ├── .DS_Store │ │ └── MainController.js │ │ └── services │ │ ├── .DS_Store │ │ └── nyt.js └── before │ ├── .DS_Store │ ├── index.html │ └── js │ ├── .DS_Store │ ├── app.js │ └── controllers │ ├── .DS_Store │ └── MainController.js ├── Basic Angular in 8 ├── .DS_Store ├── index.html └── js │ ├── .DS_Store │ ├── app.js │ └── controllers │ ├── .DS_Store │ └── MainController.js ├── Bootstrap in 5 ├── .DS_Store ├── Bootstrap Template Used in Blog │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── css │ │ ├── agency.css │ │ └── agency.min.css │ ├── gulpfile.js │ ├── img │ │ ├── about │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ └── 4.jpg │ │ ├── header-bg.jpg │ │ ├── logos │ │ │ ├── aetuts.jpg │ │ │ ├── creative-market.jpg │ │ │ ├── designmodo.jpg │ │ │ ├── envato.jpg │ │ │ ├── microlancer.jpg │ │ │ ├── themeforest.jpg │ │ │ └── wordpress.jpg │ │ ├── map-image.png │ │ ├── portfolio │ │ │ ├── dreams-preview.png │ │ │ ├── dreams.png │ │ │ ├── escape-preview.png │ │ │ ├── escape.png │ │ │ ├── golden-preview.png │ │ │ ├── golden.png │ │ │ ├── roundicons-free.png │ │ │ ├── roundicons.png │ │ │ ├── startup-framework-preview.png │ │ │ ├── startup-framework.png │ │ │ ├── treehouse-preview.png │ │ │ └── treehouse.png │ │ └── team │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ └── 3.jpg │ ├── index.html │ ├── js │ │ ├── agency.js │ │ ├── agency.min.js │ │ ├── contact_me.js │ │ └── jqBootstrapValidation.js │ ├── less │ │ ├── agency.less │ │ ├── mixins.less │ │ └── variables.less │ ├── mail │ │ └── contact_me.php │ ├── package.json │ ├── scss │ │ ├── _mixins.scss │ │ ├── _variables.scss │ │ └── agency.scss │ └── vendor │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ └── jquery │ │ ├── jquery.js │ │ └── jquery.min.js ├── index.html ├── main.css └── startbootstrap-agency-1.1.0 │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── css │ ├── agency.css │ └── agency.min.css │ ├── gulpfile.js │ ├── img │ ├── about │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ └── 4.jpg │ ├── header-bg.jpg │ ├── logos │ │ ├── aetuts.jpg │ │ ├── creative-market.jpg │ │ ├── designmodo.jpg │ │ ├── envato.jpg │ │ ├── microlancer.jpg │ │ ├── themeforest.jpg │ │ └── wordpress.jpg │ ├── map-image.png │ ├── portfolio │ │ ├── dreams-preview.png │ │ ├── dreams.png │ │ ├── escape-preview.png │ │ ├── escape.png │ │ ├── golden-preview.png │ │ ├── golden.png │ │ ├── roundicons-free.png │ │ ├── roundicons.png │ │ ├── startup-framework-preview.png │ │ ├── startup-framework.png │ │ ├── treehouse-preview.png │ │ └── treehouse.png │ └── team │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ ├── index.html │ ├── js │ ├── agency.js │ ├── agency.min.js │ ├── contact_me.js │ └── jqBootstrapValidation.js │ ├── less │ ├── agency.less │ ├── mixins.less │ └── variables.less │ ├── mail │ └── contact_me.php │ ├── package.json │ ├── scss │ ├── _mixins.scss │ ├── _variables.scss │ └── agency.scss │ └── vendor │ ├── bootstrap │ ├── css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── less │ │ ├── animated.less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── screen-reader.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss │ └── jquery │ ├── jquery.js │ └── jquery.min.js ├── CSS in 5 ├── .DS_Store ├── index.html └── main.css ├── Chatbots in 16 Introduction ├── Procfile ├── index.js ├── node_modules │ ├── .bin │ │ ├── har-validator │ │ ├── mime │ │ ├── sshpk-conv │ │ ├── sshpk-sign │ │ ├── sshpk-verify │ │ └── uuid │ ├── accepts │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── ansi-regex │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── ansi-styles │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── array-flatten │ │ ├── LICENSE │ │ ├── README.md │ │ ├── array-flatten.js │ │ └── package.json │ ├── asn1 │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── ber │ │ │ │ ├── errors.js │ │ │ │ ├── index.js │ │ │ │ ├── reader.js │ │ │ │ ├── types.js │ │ │ │ └── writer.js │ │ │ └── index.js │ │ ├── package.json │ │ └── tst │ │ │ └── ber │ │ │ ├── reader.test.js │ │ │ └── writer.test.js │ ├── assert-plus │ │ ├── AUTHORS │ │ ├── CHANGES.md │ │ ├── README.md │ │ ├── assert.js │ │ └── package.json │ ├── asynckit │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── abort.js │ │ │ ├── async.js │ │ │ ├── defer.js │ │ │ ├── iterate.js │ │ │ ├── readable_asynckit.js │ │ │ ├── readable_parallel.js │ │ │ ├── readable_serial.js │ │ │ ├── readable_serial_ordered.js │ │ │ ├── state.js │ │ │ ├── streamify.js │ │ │ └── terminator.js │ │ ├── package.json │ │ ├── parallel.js │ │ ├── serial.js │ │ ├── serialOrdered.js │ │ └── stream.js │ ├── aws-sign2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── aws4 │ │ ├── .npmignore │ │ ├── .tern-port │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── aws4.js │ │ ├── lru.js │ │ └── package.json │ ├── bcrypt-pbkdf │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── bl │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bl.js │ │ ├── package.json │ │ └── test │ │ │ └── test.js │ ├── body-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── read.js │ │ │ └── types │ │ │ │ ├── json.js │ │ │ │ ├── raw.js │ │ │ │ ├── text.js │ │ │ │ └── urlencoded.js │ │ └── package.json │ ├── boom │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── images │ │ │ └── boom.png │ │ ├── lib │ │ │ └── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── bytes │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── caseless │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── chalk │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── combined-stream │ │ ├── License │ │ ├── Readme.md │ │ ├── lib │ │ │ └── combined_stream.js │ │ └── package.json │ ├── commander │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── content-disposition │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── content-type │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── cookie-signature │ │ ├── .npmignore │ │ ├── History.md │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── cookie │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── core-util-is │ │ ├── LICENSE │ │ ├── README.md │ │ ├── float.patch │ │ ├── lib │ │ │ └── util.js │ │ ├── package.json │ │ └── test.js │ ├── cryptiles │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── dashdash │ │ ├── README.md │ │ ├── etc │ │ │ └── dashdash.bash_completion.in │ │ ├── lib │ │ │ └── dashdash.js │ │ ├── node_modules │ │ │ └── assert-plus │ │ │ │ ├── AUTHORS │ │ │ │ ├── CHANGES.md │ │ │ │ ├── README.md │ │ │ │ ├── assert.js │ │ │ │ └── package.json │ │ └── package.json │ ├── debug │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── History.md │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── browser.js │ │ ├── component.json │ │ ├── debug.js │ │ ├── node.js │ │ └── package.json │ ├── delayed-stream │ │ ├── .npmignore │ │ ├── License │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── lib │ │ │ └── delayed_stream.js │ │ └── package.json │ ├── depd │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── browser │ │ │ │ └── index.js │ │ │ └── compat │ │ │ │ ├── buffer-concat.js │ │ │ │ ├── callsite-tostring.js │ │ │ │ ├── event-listener-count.js │ │ │ │ └── index.js │ │ └── package.json │ ├── destroy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── ecc-jsbn │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── LICENSE-jsbn │ │ │ ├── ec.js │ │ │ └── sec.js │ │ ├── package.json │ │ └── test.js │ ├── ee-first │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── encodeurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── escape-html │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── escape-string-regexp │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── etag │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── express │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── application.js │ │ │ ├── express.js │ │ │ ├── middleware │ │ │ │ ├── init.js │ │ │ │ └── query.js │ │ │ ├── request.js │ │ │ ├── response.js │ │ │ ├── router │ │ │ │ ├── index.js │ │ │ │ ├── layer.js │ │ │ │ └── route.js │ │ │ ├── utils.js │ │ │ └── view.js │ │ └── package.json │ ├── extend │ │ ├── .eslintrc │ │ ├── .jscs.json │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── component.json │ │ ├── index.js │ │ └── package.json │ ├── extsprintf │ │ ├── .gitmodules │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.deps │ │ ├── Makefile.targ │ │ ├── README.md │ │ ├── examples │ │ │ └── simple.js │ │ ├── jsl.node.conf │ │ ├── lib │ │ │ └── extsprintf.js │ │ └── package.json │ ├── finalhandler │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── forever-agent │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── form-data │ │ ├── License │ │ ├── README.md │ │ ├── lib │ │ │ ├── browser.js │ │ │ ├── form_data.js │ │ │ └── populate.js │ │ └── package.json │ ├── forwarded │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── fresh │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── generate-function │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── example.js │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── generate-object-property │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── getpass │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ ├── node_modules │ │ │ └── assert-plus │ │ │ │ ├── AUTHORS │ │ │ │ ├── CHANGES.md │ │ │ │ ├── README.md │ │ │ │ ├── assert.js │ │ │ │ └── package.json │ │ └── package.json │ ├── graceful-readlink │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── har-validator │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── har-validator │ │ ├── lib │ │ │ ├── async.js │ │ │ ├── error.js │ │ │ ├── index.js │ │ │ ├── runner.js │ │ │ └── schemas │ │ │ │ ├── cache.json │ │ │ │ ├── cacheEntry.json │ │ │ │ ├── content.json │ │ │ │ ├── cookie.json │ │ │ │ ├── creator.json │ │ │ │ ├── entry.json │ │ │ │ ├── har.json │ │ │ │ ├── index.js │ │ │ │ ├── log.json │ │ │ │ ├── page.json │ │ │ │ ├── pageTimings.json │ │ │ │ ├── postData.json │ │ │ │ ├── record.json │ │ │ │ ├── request.json │ │ │ │ ├── response.json │ │ │ │ └── timings.json │ │ └── package.json │ ├── has-ansi │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── hawk │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── dist │ │ │ └── client.js │ │ ├── example │ │ │ └── usage.js │ │ ├── images │ │ │ ├── hawk.png │ │ │ └── logo.png │ │ ├── lib │ │ │ ├── browser.js │ │ │ ├── client.js │ │ │ ├── crypto.js │ │ │ ├── index.js │ │ │ ├── server.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── browser.js │ │ │ ├── client.js │ │ │ ├── crypto.js │ │ │ ├── index.js │ │ │ ├── readme.js │ │ │ ├── server.js │ │ │ ├── uri.js │ │ │ └── utils.js │ ├── hoek │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── images │ │ │ └── hoek.png │ │ ├── lib │ │ │ ├── escape.js │ │ │ └── index.js │ │ ├── package.json │ │ └── test │ │ │ ├── escaper.js │ │ │ ├── index.js │ │ │ └── modules │ │ │ ├── ignore.txt │ │ │ ├── test1.js │ │ │ ├── test2.js │ │ │ └── test3.js │ ├── http-errors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── http-signature │ │ ├── .dir-locals.el │ │ ├── .npmignore │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── http_signing.md │ │ ├── lib │ │ │ ├── index.js │ │ │ ├── parser.js │ │ │ ├── signer.js │ │ │ ├── utils.js │ │ │ └── verify.js │ │ └── package.json │ ├── iconv-lite │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Changelog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── encodings │ │ │ ├── dbcs-codec.js │ │ │ ├── dbcs-data.js │ │ │ ├── index.js │ │ │ ├── internal.js │ │ │ ├── sbcs-codec.js │ │ │ ├── sbcs-data-generated.js │ │ │ ├── sbcs-data.js │ │ │ ├── tables │ │ │ │ ├── big5-added.json │ │ │ │ ├── cp936.json │ │ │ │ ├── cp949.json │ │ │ │ ├── cp950.json │ │ │ │ ├── eucjp.json │ │ │ │ ├── gb18030-ranges.json │ │ │ │ ├── gbk-added.json │ │ │ │ └── shiftjis.json │ │ │ ├── utf16.js │ │ │ └── utf7.js │ │ ├── lib │ │ │ ├── bom-handling.js │ │ │ ├── extend-node.js │ │ │ ├── index.js │ │ │ └── streams.js │ │ └── package.json │ ├── inherits │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inherits.js │ │ ├── inherits_browser.js │ │ ├── package.json │ │ └── test.js │ ├── ipaddr.js │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Cakefile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── ipaddr.min.js │ │ ├── lib │ │ │ └── ipaddr.js │ │ ├── package.json │ │ ├── src │ │ │ └── ipaddr.coffee │ │ └── test │ │ │ └── ipaddr.test.coffee │ ├── is-my-json-valid │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example.js │ │ ├── formats.js │ │ ├── index.js │ │ ├── package.json │ │ ├── require.js │ │ └── test │ │ │ ├── fixtures │ │ │ └── cosmic.js │ │ │ ├── json-schema-draft4 │ │ │ ├── additionalItems.json │ │ │ ├── additionalProperties.json │ │ │ ├── allOf.json │ │ │ ├── anyOf.json │ │ │ ├── bignum.json │ │ │ ├── default.json │ │ │ ├── definitions.json │ │ │ ├── dependencies.json │ │ │ ├── enum.json │ │ │ ├── format.json │ │ │ ├── items.json │ │ │ ├── maxItems.json │ │ │ ├── maxLength.json │ │ │ ├── maxProperties.json │ │ │ ├── maximum.json │ │ │ ├── minItems.json │ │ │ ├── minLength.json │ │ │ ├── minProperties.json │ │ │ ├── minimum.json │ │ │ ├── multipleOf.json │ │ │ ├── not.json │ │ │ ├── nullAndFormat.json │ │ │ ├── nullAndObject.json │ │ │ ├── oneOf.json │ │ │ ├── pattern.json │ │ │ ├── patternProperties.json │ │ │ ├── properties.json │ │ │ ├── ref.json │ │ │ ├── refRemote.json │ │ │ ├── required.json │ │ │ ├── type.json │ │ │ └── uniqueItems.json │ │ │ ├── json-schema.js │ │ │ └── misc.js │ ├── is-property │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── is-property.js │ │ └── package.json │ ├── is-typedarray │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── isarray │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Makefile │ │ ├── README.md │ │ ├── component.json │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── isstream │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── isstream.js │ │ ├── package.json │ │ └── test.js │ ├── jodid25519 │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── AUTHORS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── almond.0 │ │ ├── almond.1 │ │ ├── index.js │ │ ├── jsdoc.json │ │ ├── lib │ │ │ ├── core.js │ │ │ ├── curve255.js │ │ │ ├── dh.js │ │ │ ├── eddsa.js │ │ │ └── utils.js │ │ └── package.json │ ├── jsbn │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example.html │ │ ├── example.js │ │ ├── index.js │ │ └── package.json │ ├── json-schema │ │ ├── README.md │ │ ├── draft-00 │ │ │ ├── hyper-schema │ │ │ ├── json-ref │ │ │ ├── links │ │ │ └── schema │ │ ├── draft-01 │ │ │ ├── hyper-schema │ │ │ ├── json-ref │ │ │ ├── links │ │ │ └── schema │ │ ├── draft-02 │ │ │ ├── hyper-schema │ │ │ ├── json-ref │ │ │ ├── links │ │ │ └── schema │ │ ├── draft-03 │ │ │ ├── examples │ │ │ │ ├── address │ │ │ │ ├── calendar │ │ │ │ ├── card │ │ │ │ ├── geo │ │ │ │ └── interfaces │ │ │ ├── hyper-schema │ │ │ ├── json-ref │ │ │ ├── links │ │ │ └── schema │ │ ├── draft-04 │ │ │ ├── hyper-schema │ │ │ ├── links │ │ │ └── schema │ │ ├── draft-zyp-json-schema-03.xml │ │ ├── draft-zyp-json-schema-04.xml │ │ ├── lib │ │ │ ├── links.js │ │ │ └── validate.js │ │ ├── package.json │ │ └── test │ │ │ └── tests.js │ ├── json-stringify-safe │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── package.json │ │ ├── stringify.js │ │ └── test │ │ │ ├── mocha.opts │ │ │ └── stringify_test.js │ ├── jsonpointer │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── benchmark.js │ │ ├── jsonpointer.js │ │ ├── package.json │ │ └── test.js │ ├── jsprim │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── jsprim.js │ │ └── package.json │ ├── media-typer │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── merge-descriptors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── methods │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime-db │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── db.json │ │ ├── index.js │ │ └── package.json │ ├── mime-types │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── build.js │ │ │ └── test.js │ │ ├── cli.js │ │ ├── mime.js │ │ ├── package.json │ │ └── types.json │ ├── ms │ │ ├── .npmignore │ │ ├── History.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── negotiator │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── charset.js │ │ │ ├── encoding.js │ │ │ ├── language.js │ │ │ └── mediaType.js │ │ └── package.json │ ├── node-uuid │ │ ├── .npmignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── benchmark │ │ │ ├── README.md │ │ │ ├── bench.gnu │ │ │ ├── bench.sh │ │ │ ├── benchmark-native.c │ │ │ └── benchmark.js │ │ ├── bin │ │ │ └── uuid │ │ ├── bower.json │ │ ├── component.json │ │ ├── package.json │ │ ├── test │ │ │ ├── compare_v1.js │ │ │ ├── test.html │ │ │ └── test.js │ │ └── uuid.js │ ├── oauth-sign │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── on-finished │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── parseurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── path-to-regexp │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── pinkie-promise │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── pinkie │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── process-nextick-args │ │ ├── .travis.yml │ │ ├── index.js │ │ ├── license.md │ │ ├── package.json │ │ ├── readme.md │ │ └── test.js │ ├── proxy-addr │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── qs │ │ ├── .eslintignore │ │ ├── .eslintrc │ │ ├── .jscs.json │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── dist │ │ │ └── qs.js │ │ ├── lib │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ ├── range-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── raw-body │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── readable-stream │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── .zuul.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc │ │ │ ├── stream.markdown │ │ │ └── wg-meetings │ │ │ │ └── 2015-01-30.md │ │ ├── duplex.js │ │ ├── lib │ │ │ ├── _stream_duplex.js │ │ │ ├── _stream_passthrough.js │ │ │ ├── _stream_readable.js │ │ │ ├── _stream_transform.js │ │ │ └── _stream_writable.js │ │ ├── package.json │ │ ├── passthrough.js │ │ ├── readable.js │ │ ├── transform.js │ │ └── writable.js │ ├── request │ │ ├── .eslintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codecov.yml │ │ ├── index.js │ │ ├── lib │ │ │ ├── auth.js │ │ │ ├── cookies.js │ │ │ ├── getProxyFromURI.js │ │ │ ├── har.js │ │ │ ├── helpers.js │ │ │ ├── multipart.js │ │ │ ├── oauth.js │ │ │ ├── querystring.js │ │ │ ├── redirect.js │ │ │ └── tunnel.js │ │ ├── package.json │ │ └── request.js │ ├── send │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── serve-static │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── setprototypeof │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── sntp │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── examples │ │ │ ├── offset.js │ │ │ └── time.js │ │ ├── index.js │ │ ├── lib │ │ │ └── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── sshpk │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ ├── sshpk-conv │ │ │ ├── sshpk-sign │ │ │ └── sshpk-verify │ │ ├── lib │ │ │ ├── algs.js │ │ │ ├── certificate.js │ │ │ ├── dhe.js │ │ │ ├── ed-compat.js │ │ │ ├── errors.js │ │ │ ├── fingerprint.js │ │ │ ├── formats │ │ │ │ ├── auto.js │ │ │ │ ├── openssh-cert.js │ │ │ │ ├── pem.js │ │ │ │ ├── pkcs1.js │ │ │ │ ├── pkcs8.js │ │ │ │ ├── rfc4253.js │ │ │ │ ├── ssh-private.js │ │ │ │ ├── ssh.js │ │ │ │ ├── x509-pem.js │ │ │ │ └── x509.js │ │ │ ├── identity.js │ │ │ ├── index.js │ │ │ ├── key.js │ │ │ ├── private-key.js │ │ │ ├── signature.js │ │ │ ├── ssh-buffer.js │ │ │ └── utils.js │ │ ├── man │ │ │ └── man1 │ │ │ │ ├── sshpk-conv.1 │ │ │ │ ├── sshpk-sign.1 │ │ │ │ └── sshpk-verify.1 │ │ ├── node_modules │ │ │ └── assert-plus │ │ │ │ ├── AUTHORS │ │ │ │ ├── CHANGES.md │ │ │ │ ├── README.md │ │ │ │ ├── assert.js │ │ │ │ └── package.json │ │ └── package.json │ ├── statuses │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codes.json │ │ ├── index.js │ │ └── package.json │ ├── string_decoder │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── stringstream │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── example.js │ │ ├── package.json │ │ └── stringstream.js │ ├── strip-ansi │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── supports-color │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── tough-cookie │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── cookie.js │ │ │ ├── memstore.js │ │ │ ├── pathMatch.js │ │ │ ├── permuteDomain.js │ │ │ ├── pubsuffix.js │ │ │ └── store.js │ │ └── package.json │ ├── tunnel-agent │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── tweetnacl │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── COPYING.txt │ │ ├── README.md │ │ ├── nacl-fast.js │ │ ├── nacl-fast.min.js │ │ ├── nacl.js │ │ ├── nacl.min.js │ │ └── package.json │ ├── type-is │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── unpipe │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── util-deprecate │ │ ├── History.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── browser.js │ │ ├── node.js │ │ └── package.json │ ├── utils-merge │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── vary │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── verror │ │ ├── .gitmodules │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.targ │ │ ├── README.md │ │ ├── examples │ │ │ ├── levels-verror.js │ │ │ ├── levels-werror.js │ │ │ ├── varargs.js │ │ │ ├── verror.js │ │ │ └── werror.js │ │ ├── jsl.node.conf │ │ ├── lib │ │ │ └── verror.js │ │ ├── package.json │ │ └── tests │ │ │ ├── tst.inherit.js │ │ │ ├── tst.verror.js │ │ │ └── tst.werror.js │ └── xtend │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── LICENCE │ │ ├── Makefile │ │ ├── README.md │ │ ├── immutable.js │ │ ├── mutable.js │ │ ├── package.json │ │ └── test.js └── package.json ├── DevTools in 5 ├── .DS_Store ├── index.html └── main.css ├── Directives in 9 ├── .DS_Store ├── index.html └── js │ ├── .DS_Store │ ├── app.js │ ├── controllers │ ├── .DS_Store │ └── MainController.js │ └── directives │ ├── .DS_Store │ ├── singlelist.html │ └── singlelist.js ├── Endpoints with Angular.js in 9 ├── .DS_Store ├── index.html └── js │ ├── .DS_Store │ ├── app.js │ ├── controllers │ ├── .DS_Store │ └── MainController.js │ └── directives │ ├── singlelist.html │ └── singlelist.js ├── HTML in 5 ├── .DS_Store └── index.html ├── Heroku Free Web Hosting in 12 ├── .DS_Store ├── Procfile ├── node_modules │ ├── .bin │ │ └── mime │ ├── accepts │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── array-flatten │ │ ├── LICENSE │ │ ├── README.md │ │ ├── array-flatten.js │ │ └── package.json │ ├── content-disposition │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── content-type │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── cookie-signature │ │ ├── .npmignore │ │ ├── History.md │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── cookie │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── debug │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── History.md │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── browser.js │ │ ├── component.json │ │ ├── debug.js │ │ ├── node.js │ │ └── package.json │ ├── depd │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ └── compat │ │ │ │ ├── buffer-concat.js │ │ │ │ ├── callsite-tostring.js │ │ │ │ └── index.js │ │ └── package.json │ ├── destroy │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── ee-first │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── escape-html │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── etag │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── express │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── application.js │ │ │ ├── express.js │ │ │ ├── middleware │ │ │ │ ├── init.js │ │ │ │ └── query.js │ │ │ ├── request.js │ │ │ ├── response.js │ │ │ ├── router │ │ │ │ ├── index.js │ │ │ │ ├── layer.js │ │ │ │ └── route.js │ │ │ ├── utils.js │ │ │ └── view.js │ │ └── package.json │ ├── finalhandler │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── forwarded │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── fresh │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── http-errors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── inherits │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inherits.js │ │ ├── inherits_browser.js │ │ └── package.json │ ├── ipaddr.js │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Cakefile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── ipaddr.min.js │ │ ├── lib │ │ │ └── ipaddr.js │ │ ├── package.json │ │ ├── src │ │ │ └── ipaddr.coffee │ │ └── test │ │ │ └── ipaddr.test.coffee │ ├── media-typer │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── merge-descriptors │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── methods │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime-db │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── db.json │ │ ├── index.js │ │ └── package.json │ ├── mime-types │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── build.js │ │ │ └── test.js │ │ ├── cli.js │ │ ├── mime.js │ │ ├── package.json │ │ └── types.json │ ├── ms │ │ ├── .npmignore │ │ ├── History.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── negotiator │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── charset.js │ │ │ ├── encoding.js │ │ │ ├── language.js │ │ │ └── mediaType.js │ │ └── package.json │ ├── on-finished │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── parseurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── path-to-regexp │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── proxy-addr │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── qs │ │ ├── .eslintignore │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── lib │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ ├── range-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── send │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── serve-static │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── depd │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── browser │ │ │ │ │ │ └── index.js │ │ │ │ │ └── compat │ │ │ │ │ │ ├── buffer-concat.js │ │ │ │ │ │ ├── callsite-tostring.js │ │ │ │ │ │ ├── event-listener-count.js │ │ │ │ │ │ └── index.js │ │ │ │ └── package.json │ │ │ ├── destroy │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── escape-html │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── send │ │ │ │ ├── HISTORY.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ ├── statuses │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codes.json │ │ ├── index.js │ │ └── package.json │ ├── type-is │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── unpipe │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── utils-merge │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ └── vary │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json ├── package.json ├── public │ ├── .DS_Store │ ├── index.html │ └── js │ │ ├── .DS_Store │ │ ├── app.js │ │ ├── controllers │ │ ├── .DS_Store │ │ └── MainController.js │ │ └── directives │ │ ├── singlelist.html │ │ └── singlelist.js └── server.js ├── JavaScript in 7 ├── .DS_Store ├── index.html └── js │ └── script.js ├── README.md └── jQuery in 6 ├── .DS_Store ├── index.html └── js └── script.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/.DS_Store -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa HTTP:HTTPS Requests Tutorial/.DS_Store -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/speechAssets/sampleUtterances.txt: -------------------------------------------------------------------------------- 1 | GetInfoIntent get some information -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa HTTP:HTTPS Requests Tutorial/src/.DS_Store -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/Archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa HTTP:HTTPS Requests Tutorial/src/Archive.zip -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa HTTP:HTTPS Requests Tutorial/src/index.js -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/.bin/har-validator: -------------------------------------------------------------------------------- 1 | ../har-validator/bin/har-validator -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/.bin/sshpk-conv: -------------------------------------------------------------------------------- 1 | ../sshpk/bin/sshpk-conv -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/.bin/sshpk-sign: -------------------------------------------------------------------------------- 1 | ../sshpk/bin/sshpk-sign -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/.bin/sshpk-verify: -------------------------------------------------------------------------------- 1 | ../sshpk/bin/sshpk-verify -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/.bin/uuid: -------------------------------------------------------------------------------- 1 | ../node-uuid/bin/uuid -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/asn1/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/aws4/.tern-port: -------------------------------------------------------------------------------- 1 | 62638 -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/aws4/lru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/aws4/lru.js -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/delayed-stream/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/extend/.npmignore: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/generate-function/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/generate-object-property/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/graceful-readlink/.npmignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .DS_Store 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/hoek/test/modules/ignore.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/hoek/test/modules/test1.js: -------------------------------------------------------------------------------- 1 | exports.x = 1; 2 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/hoek/test/modules/test2.js: -------------------------------------------------------------------------------- 1 | exports.y = 2; 2 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/hoek/test/modules/test3.js: -------------------------------------------------------------------------------- 1 | exports.z = 3; 2 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/is-my-json-valid/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | cosmicrealms.com 3 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/isstream/.npmignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/jsbn/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/json-stringify-safe/.npmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/json-stringify-safe/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | --require must 3 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/node-uuid/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .nyc_output 4 | coverage 5 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/qs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/qs/LICENSE -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/request/codecov.yml: -------------------------------------------------------------------------------- 1 | 2 | comment: false 3 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/sntp/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/tweetnacl/.npmignore: -------------------------------------------------------------------------------- 1 | .eslintrc 2 | .travis.yml 3 | bower.json 4 | test 5 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/verror/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/verror/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/src/node_modules/xtend/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Alexa HTTP:HTTPS Requests Tutorial/starterIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa HTTP:HTTPS Requests Tutorial/starterIndex.js -------------------------------------------------------------------------------- /Alexa Part I/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa Part I/.DS_Store -------------------------------------------------------------------------------- /Alexa Part I/speechAssets/intentSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa Part I/speechAssets/intentSchema.json -------------------------------------------------------------------------------- /Alexa Part I/speechAssets/sampleUtterances.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa Part I/speechAssets/sampleUtterances.txt -------------------------------------------------------------------------------- /Alexa Part II/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa Part II/.DS_Store -------------------------------------------------------------------------------- /Alexa Part II/ReindeerFacts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa Part II/ReindeerFacts/.DS_Store -------------------------------------------------------------------------------- /Alexa Part II/ReindeerFacts/speechAssets/intentSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa Part II/ReindeerFacts/speechAssets/intentSchema.json -------------------------------------------------------------------------------- /Alexa Part II/ReindeerFacts/speechAssets/sampleUtterances.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa Part II/ReindeerFacts/speechAssets/sampleUtterances.txt -------------------------------------------------------------------------------- /Alexa Part II/ReindeerFacts/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa Part II/ReindeerFacts/src/.DS_Store -------------------------------------------------------------------------------- /Alexa Part II/ReindeerFacts/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa Part II/ReindeerFacts/src/index.js -------------------------------------------------------------------------------- /Alexa Part II/ReindeerFacts/src/index.js.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa Part II/ReindeerFacts/src/index.js.zip -------------------------------------------------------------------------------- /Alexa Part II/Starter for Part 2/index_start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Alexa Part II/Starter for Part 2/index_start.js -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/.DS_Store -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/end_code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/end_code/.DS_Store -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/end_code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/end_code/index.html -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/end_code/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/end_code/js/.DS_Store -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/end_code/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/end_code/js/app.js -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/end_code/views/aboutme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/end_code/views/aboutme.html -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/end_code/views/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/end_code/views/contact.html -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/end_code/views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/end_code/views/home.html -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/end_code/views/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/end_code/views/post.html -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/end_code/views/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/end_code/views/posts.html -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/start_code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/start_code/.DS_Store -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/start_code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/start_code/index.html -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/start_code/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/start_code/js/.DS_Store -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/start_code/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/start_code/js/app.js -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/start_code/views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/start_code/views/.DS_Store -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/start_code/views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/start_code/views/home.html -------------------------------------------------------------------------------- /Angular Routing 2 - Parameters in 8/start_code/views/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing 2 - Parameters in 8/start_code/views/posts.html -------------------------------------------------------------------------------- /Angular Routing in 14/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing in 14/.DS_Store -------------------------------------------------------------------------------- /Angular Routing in 14/end_code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing in 14/end_code/.DS_Store -------------------------------------------------------------------------------- /Angular Routing in 14/end_code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing in 14/end_code/index.html -------------------------------------------------------------------------------- /Angular Routing in 14/end_code/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing in 14/end_code/js/.DS_Store -------------------------------------------------------------------------------- /Angular Routing in 14/end_code/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing in 14/end_code/js/app.js -------------------------------------------------------------------------------- /Angular Routing in 14/end_code/views/aboutme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing in 14/end_code/views/aboutme.html -------------------------------------------------------------------------------- /Angular Routing in 14/end_code/views/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing in 14/end_code/views/contact.html -------------------------------------------------------------------------------- /Angular Routing in 14/end_code/views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing in 14/end_code/views/home.html -------------------------------------------------------------------------------- /Angular Routing in 14/end_code/views/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing in 14/end_code/views/posts.html -------------------------------------------------------------------------------- /Angular Routing in 14/start_code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing in 14/start_code/.DS_Store -------------------------------------------------------------------------------- /Angular Routing in 14/start_code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing in 14/start_code/index.html -------------------------------------------------------------------------------- /Angular Routing in 14/start_code/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Routing in 14/start_code/js/.DS_Store -------------------------------------------------------------------------------- /Angular Routing in 14/start_code/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('Blog', []); 2 | -------------------------------------------------------------------------------- /Angular Services in 12/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Services in 12/.DS_Store -------------------------------------------------------------------------------- /Angular Services in 12/after/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Services in 12/after/.DS_Store -------------------------------------------------------------------------------- /Angular Services in 12/after/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Services in 12/after/index.html -------------------------------------------------------------------------------- /Angular Services in 12/after/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Services in 12/after/js/.DS_Store -------------------------------------------------------------------------------- /Angular Services in 12/after/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('Trends', []); -------------------------------------------------------------------------------- /Angular Services in 12/after/js/controllers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Services in 12/after/js/controllers/.DS_Store -------------------------------------------------------------------------------- /Angular Services in 12/after/js/controllers/MainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Services in 12/after/js/controllers/MainController.js -------------------------------------------------------------------------------- /Angular Services in 12/after/js/services/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Services in 12/after/js/services/.DS_Store -------------------------------------------------------------------------------- /Angular Services in 12/after/js/services/nyt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Services in 12/after/js/services/nyt.js -------------------------------------------------------------------------------- /Angular Services in 12/before/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Services in 12/before/.DS_Store -------------------------------------------------------------------------------- /Angular Services in 12/before/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Services in 12/before/index.html -------------------------------------------------------------------------------- /Angular Services in 12/before/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Services in 12/before/js/.DS_Store -------------------------------------------------------------------------------- /Angular Services in 12/before/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('Trends', []); 2 | -------------------------------------------------------------------------------- /Angular Services in 12/before/js/controllers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Services in 12/before/js/controllers/.DS_Store -------------------------------------------------------------------------------- /Angular Services in 12/before/js/controllers/MainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Angular Services in 12/before/js/controllers/MainController.js -------------------------------------------------------------------------------- /Basic Angular in 8/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Basic Angular in 8/.DS_Store -------------------------------------------------------------------------------- /Basic Angular in 8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Basic Angular in 8/index.html -------------------------------------------------------------------------------- /Basic Angular in 8/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Basic Angular in 8/js/.DS_Store -------------------------------------------------------------------------------- /Basic Angular in 8/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('ToDoList', []); 2 | -------------------------------------------------------------------------------- /Basic Angular in 8/js/controllers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Basic Angular in 8/js/controllers/.DS_Store -------------------------------------------------------------------------------- /Basic Angular in 8/js/controllers/MainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Basic Angular in 8/js/controllers/MainController.js -------------------------------------------------------------------------------- /Bootstrap in 5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/.DS_Store -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/LICENSE -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/README.md -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/css/agency.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/css/agency.css -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/gulpfile.js -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/img/about/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/img/about/1.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/img/about/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/img/about/2.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/img/about/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/img/about/3.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/img/about/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/img/about/4.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/img/team/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/img/team/1.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/img/team/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/img/team/2.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/img/team/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/img/team/3.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/index.html -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/js/agency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/js/agency.js -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/js/agency.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/js/agency.min.js -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/js/contact_me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/js/contact_me.js -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/less/agency.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/less/agency.less -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/less/mixins.less -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/package.json -------------------------------------------------------------------------------- /Bootstrap in 5/Bootstrap Template Used in Blog/scss/agency.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/Bootstrap Template Used in Blog/scss/agency.scss -------------------------------------------------------------------------------- /Bootstrap in 5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/index.html -------------------------------------------------------------------------------- /Bootstrap in 5/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/main.css -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/LICENSE -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/README.md -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/css/agency.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/css/agency.css -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/css/agency.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/css/agency.min.css -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/gulpfile.js -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/img/about/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/img/about/1.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/img/about/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/img/about/2.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/img/about/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/img/about/3.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/img/about/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/img/about/4.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/img/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/img/header-bg.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/img/logos/aetuts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/img/logos/aetuts.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/img/logos/envato.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/img/logos/envato.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/img/map-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/img/map-image.png -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/img/team/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/img/team/1.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/img/team/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/img/team/2.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/img/team/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/img/team/3.jpg -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/index.html -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/js/agency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/js/agency.js -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/js/agency.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/js/agency.min.js -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/js/contact_me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/js/contact_me.js -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/less/agency.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/less/agency.less -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/less/mixins.less -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/less/variables.less -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/mail/contact_me.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/mail/contact_me.php -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/package.json -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/scss/_mixins.scss -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/scss/_variables.scss -------------------------------------------------------------------------------- /Bootstrap in 5/startbootstrap-agency-1.1.0/scss/agency.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Bootstrap in 5/startbootstrap-agency-1.1.0/scss/agency.scss -------------------------------------------------------------------------------- /CSS in 5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/CSS in 5/.DS_Store -------------------------------------------------------------------------------- /CSS in 5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/CSS in 5/index.html -------------------------------------------------------------------------------- /CSS in 5/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/CSS in 5/main.css -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/.bin/har-validator: -------------------------------------------------------------------------------- 1 | ../har-validator/bin/har-validator -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/.bin/mime: -------------------------------------------------------------------------------- 1 | ../mime/cli.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/.bin/sshpk-conv: -------------------------------------------------------------------------------- 1 | ../sshpk/bin/sshpk-conv -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/.bin/sshpk-sign: -------------------------------------------------------------------------------- 1 | ../sshpk/bin/sshpk-sign -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/.bin/sshpk-verify: -------------------------------------------------------------------------------- 1 | ../sshpk/bin/sshpk-verify -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/.bin/uuid: -------------------------------------------------------------------------------- 1 | ../node-uuid/bin/uuid -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/accepts/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/accepts/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/accepts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/accepts/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/accepts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/accepts/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/accepts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/accepts/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/accepts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/accepts/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ansi-regex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ansi-regex/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ansi-regex/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ansi-regex/license -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ansi-regex/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ansi-regex/readme.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ansi-styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ansi-styles/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ansi-styles/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ansi-styles/license -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ansi-styles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ansi-styles/readme.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/array-flatten/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/array-flatten/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asn1/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asn1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asn1/.travis.yml -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asn1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asn1/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asn1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asn1/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asn1/lib/ber/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asn1/lib/ber/errors.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asn1/lib/ber/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asn1/lib/ber/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asn1/lib/ber/reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asn1/lib/ber/reader.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asn1/lib/ber/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asn1/lib/ber/types.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asn1/lib/ber/writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asn1/lib/ber/writer.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asn1/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asn1/lib/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asn1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asn1/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/assert-plus/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/assert-plus/AUTHORS -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/assert-plus/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/assert-plus/CHANGES.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/assert-plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/assert-plus/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/assert-plus/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/assert-plus/assert.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asynckit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asynckit/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asynckit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asynckit/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asynckit/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asynckit/bench.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asynckit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asynckit/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asynckit/lib/abort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asynckit/lib/abort.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asynckit/lib/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asynckit/lib/async.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asynckit/lib/defer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asynckit/lib/defer.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asynckit/lib/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asynckit/lib/state.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asynckit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asynckit/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asynckit/parallel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asynckit/parallel.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asynckit/serial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asynckit/serial.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/asynckit/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/asynckit/stream.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/aws-sign2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/aws-sign2/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/aws-sign2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/aws-sign2/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/aws-sign2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/aws-sign2/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/aws-sign2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/aws-sign2/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/aws4/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/aws4/.npmignore -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/aws4/.tern-port: -------------------------------------------------------------------------------- 1 | 62638 -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/aws4/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/aws4/.travis.yml -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/aws4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/aws4/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/aws4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/aws4/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/aws4/aws4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/aws4/aws4.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/aws4/lru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/aws4/lru.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/aws4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/aws4/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/bcrypt-pbkdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/bcrypt-pbkdf/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/bcrypt-pbkdf/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/bcrypt-pbkdf/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/bl/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/bl/.jshintrc -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/bl/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/bl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/bl/.travis.yml -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/bl/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/bl/LICENSE.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/bl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/bl/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/bl/bl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/bl/bl.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/bl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/bl/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/bl/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/bl/test/test.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/body-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/body-parser/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/body-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/body-parser/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/body-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/body-parser/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/body-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/body-parser/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/boom/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/boom/.npmignore -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/boom/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/boom/.travis.yml -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/boom/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/boom/CONTRIBUTING.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/boom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/boom/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/boom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/boom/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/boom/images/boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/boom/images/boom.png -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/boom/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/boom/lib/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/boom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/boom/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/boom/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/boom/test/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/bytes/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/bytes/History.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/bytes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/bytes/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/bytes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/bytes/Readme.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/bytes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/bytes/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/bytes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/bytes/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/caseless/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/caseless/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/caseless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/caseless/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/caseless/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/caseless/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/caseless/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/caseless/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/caseless/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/caseless/test.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/chalk/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/chalk/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/chalk/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/chalk/license -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/chalk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/chalk/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/chalk/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/chalk/readme.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/commander/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/commander/History.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/commander/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/commander/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/commander/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/commander/Readme.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/commander/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/commander/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/commander/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/commander/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/content-type/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/content-type/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/content-type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/content-type/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/content-type/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/content-type/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/cookie/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/cookie/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/cookie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/cookie/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/cookie/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/cookie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/cookie/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/cookie/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/cookie/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/core-util-is/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/core-util-is/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/core-util-is/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/core-util-is/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/core-util-is/test.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/cryptiles/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/cryptiles/.npmignore -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/cryptiles/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/cryptiles/.travis.yml -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/cryptiles/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/cryptiles/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/cryptiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/cryptiles/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/cryptiles/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/cryptiles/lib/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/cryptiles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/cryptiles/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/dashdash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/dashdash/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/dashdash/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/dashdash/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/debug/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxbreak": true 3 | } 4 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/debug/.npmignore -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/debug/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/debug/History.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/debug/Makefile -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/debug/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/debug/Readme.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/debug/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/debug/bower.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/debug/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/debug/browser.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/debug/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/debug/component.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/debug/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/debug/debug.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/debug/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/debug/node.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/debug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/debug/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/delayed-stream/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/delayed-stream/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/delayed-stream/License -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/depd/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/depd/History.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/depd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/depd/Readme.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/depd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/depd/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/depd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/depd/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/destroy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/destroy/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/destroy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/destroy/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/destroy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/destroy/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/destroy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/destroy/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ecc-jsbn/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ecc-jsbn/.npmignore -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ecc-jsbn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ecc-jsbn/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ecc-jsbn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ecc-jsbn/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ecc-jsbn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ecc-jsbn/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ecc-jsbn/lib/ec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ecc-jsbn/lib/ec.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ecc-jsbn/lib/sec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ecc-jsbn/lib/sec.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ecc-jsbn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ecc-jsbn/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ecc-jsbn/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ecc-jsbn/test.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ee-first/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ee-first/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ee-first/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ee-first/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ee-first/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ee-first/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ee-first/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ee-first/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/encodeurl/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/encodeurl/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/encodeurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/encodeurl/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/encodeurl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/encodeurl/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/encodeurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/encodeurl/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/encodeurl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/encodeurl/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/escape-html/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/escape-html/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/escape-html/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/escape-html/Readme.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/escape-html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/escape-html/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/etag/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/etag/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/etag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/etag/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/etag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/etag/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/etag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/etag/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/etag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/etag/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/express/History.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/express/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/express/Readme.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/express/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/express/lib/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/express/lib/express.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/express/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/express/lib/request.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/express/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/express/lib/utils.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/express/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/express/lib/view.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/express/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/extend/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/extend/.eslintrc -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/extend/.jscs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/extend/.jscs.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/extend/.npmignore: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/extend/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/extend/.travis.yml -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/extend/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/extend/CHANGELOG.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/extend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/extend/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/extend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/extend/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/extend/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/extend/component.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/extend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/extend/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/extend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/extend/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/extsprintf/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/extsprintf/.gitmodules -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/extsprintf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/extsprintf/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/extsprintf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/extsprintf/Makefile -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/extsprintf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/extsprintf/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/finalhandler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/finalhandler/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/finalhandler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/finalhandler/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/finalhandler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/finalhandler/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/forever-agent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/forever-agent/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/forever-agent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/forever-agent/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/form-data/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/form-data/License -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/form-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/form-data/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/form-data/lib/browser.js: -------------------------------------------------------------------------------- 1 | /* eslint-env browser */ 2 | module.exports = window.FormData; 3 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/form-data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/form-data/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/forwarded/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/forwarded/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/forwarded/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/forwarded/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/forwarded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/forwarded/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/forwarded/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/forwarded/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/forwarded/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/forwarded/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/fresh/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/fresh/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/fresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/fresh/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/fresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/fresh/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/fresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/fresh/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/fresh/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/fresh/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/generate-function/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/generate-object-property/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/getpass/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/getpass/.npmignore -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/getpass/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/getpass/.travis.yml -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/getpass/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/getpass/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/getpass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/getpass/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/getpass/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/getpass/lib/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/getpass/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/getpass/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/graceful-readlink/.npmignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .DS_Store 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/har-validator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/har-validator/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/has-ansi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/has-ansi/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/has-ansi/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/has-ansi/license -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/has-ansi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/has-ansi/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/has-ansi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/has-ansi/readme.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/.npmignore -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/.travis.yml -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/bower.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/component.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/dist/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/dist/client.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/example/usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/example/usage.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/images/hawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/images/hawk.png -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/images/logo.png -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/lib/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/lib/browser.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/lib/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/lib/client.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/lib/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/lib/crypto.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/lib/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/lib/server.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/lib/utils.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/test/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/test/browser.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/test/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/test/client.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/test/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/test/crypto.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/test/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/test/readme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/test/readme.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/test/server.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/test/uri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/test/uri.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hawk/test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hawk/test/utils.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hoek/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hoek/.npmignore -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hoek/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hoek/.travis.yml -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hoek/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hoek/CONTRIBUTING.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hoek/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hoek/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hoek/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hoek/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hoek/images/hoek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hoek/images/hoek.png -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hoek/lib/escape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hoek/lib/escape.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hoek/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hoek/lib/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hoek/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hoek/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hoek/test/escaper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hoek/test/escaper.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hoek/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/hoek/test/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hoek/test/modules/ignore.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hoek/test/modules/test1.js: -------------------------------------------------------------------------------- 1 | exports.x = 1; 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hoek/test/modules/test2.js: -------------------------------------------------------------------------------- 1 | exports.y = 2; 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/hoek/test/modules/test3.js: -------------------------------------------------------------------------------- 1 | exports.z = 3; 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/http-errors/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/http-errors/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/http-errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/http-errors/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/http-errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/http-errors/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/http-errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/http-errors/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/http-signature/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/http-signature/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/iconv-lite/.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *sublime-* 3 | generation 4 | test 5 | wiki 6 | coverage 7 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/iconv-lite/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/iconv-lite/.travis.yml -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/iconv-lite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/iconv-lite/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/iconv-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/iconv-lite/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/inherits/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/inherits/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/inherits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/inherits/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/inherits/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/inherits/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/inherits/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/inherits/test.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ipaddr.js/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ipaddr.js/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ipaddr.js/.travis.yml -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ipaddr.js/Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ipaddr.js/Cakefile -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ipaddr.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ipaddr.js/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ipaddr.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ipaddr.js/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ipaddr.js/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ipaddr.js/bower.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ipaddr.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ipaddr.js/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/is-my-json-valid/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | cosmicrealms.com 3 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/is-property/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/is-property/.npmignore -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/is-property/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/is-property/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/isarray/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/isarray/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/isarray/.travis.yml -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/isarray/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/isarray/Makefile -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/isarray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/isarray/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/isarray/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/isarray/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/isarray/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/isarray/test.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/isstream/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/isstream/.jshintrc -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/isstream/.npmignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/isstream/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/isstream/LICENSE.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/isstream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/isstream/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/isstream/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/isstream/test.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jodid25519/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/jodid25519/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jodid25519/almond.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/jodid25519/almond.0 -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jodid25519/almond.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/jodid25519/almond.1 -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jodid25519/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/jodid25519/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jsbn/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jsbn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/jsbn/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jsbn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/jsbn/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jsbn/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/jsbn/example.html -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jsbn/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/jsbn/example.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jsbn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/jsbn/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jsbn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/jsbn/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/json-stringify-safe/.npmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/json-stringify-safe/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | --require must 3 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jsonpointer/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/jsonpointer/test.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jsprim/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/jsprim/CHANGES.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jsprim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/jsprim/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jsprim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/jsprim/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/jsprim/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/jsprim/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/media-typer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/media-typer/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/methods/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/methods/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/methods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/methods/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/methods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/methods/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/methods/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime-db/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/mime-db/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime-db/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/mime-db/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/mime-db/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime-db/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/mime-db/db.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime-db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/mime-db/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/mime-types/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime-types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/mime-types/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/mime/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/mime/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/mime/build/build.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime/build/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/mime/build/test.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/mime/cli.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/mime/mime.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/mime/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/mime/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/mime/types.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | History.md 4 | Makefile 5 | component.json 6 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ms/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ms/History.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ms/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ms/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ms/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/ms/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/negotiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/negotiator/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/negotiator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/negotiator/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/node-uuid/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .nyc_output 4 | coverage 5 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/node-uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/node-uuid/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/node-uuid/bin/uuid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/node-uuid/bin/uuid -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/node-uuid/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/node-uuid/uuid.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/oauth-sign/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/oauth-sign/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/oauth-sign/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/oauth-sign/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/on-finished/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/on-finished/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/parseurl/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/parseurl/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/parseurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/parseurl/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/parseurl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/parseurl/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/parseurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/parseurl/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/pinkie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/pinkie/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/pinkie/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/pinkie/license -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/pinkie/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/pinkie/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/pinkie/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/pinkie/readme.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/proxy-addr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/proxy-addr/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/proxy-addr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/proxy-addr/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/qs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/qs/.eslintrc -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/qs/.jscs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/qs/.jscs.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/qs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/qs/CHANGELOG.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/qs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/qs/CONTRIBUTING.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/qs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/qs/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/qs/dist/qs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/qs/dist/qs.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/qs/lib/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/qs/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/qs/lib/parse.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/qs/lib/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/qs/lib/stringify.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/qs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/qs/lib/utils.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/qs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/qs/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/qs/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/qs/test/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/qs/test/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/qs/test/parse.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/qs/test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/qs/test/utils.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/raw-body/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/raw-body/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/raw-body/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/raw-body/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/raw-body/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/raw-body/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/raw-body/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/raw-body/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/readable-stream/.zuul.yml: -------------------------------------------------------------------------------- 1 | ui: tape 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/request/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/request/.eslintrc -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/request/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/request/.npmignore -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/request/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/request/.travis.yml -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/request/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/request/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/request/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/request/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/request/codecov.yml: -------------------------------------------------------------------------------- 1 | 2 | comment: false 3 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/request/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/request/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/request/lib/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/request/lib/auth.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/request/lib/har.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/request/lib/har.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/request/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/request/request.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/send/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/send/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/send/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/send/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/send/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/send/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/send/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/send/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/send/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sntp/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sntp/.npmignore -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sntp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sntp/.travis.yml -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sntp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sntp/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sntp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sntp/Makefile -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sntp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sntp/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sntp/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sntp/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sntp/lib/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sntp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sntp/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sntp/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sntp/test/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sshpk/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sshpk/.npmignore -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sshpk/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sshpk/.travis.yml -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sshpk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sshpk/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sshpk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sshpk/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sshpk/lib/algs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sshpk/lib/algs.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sshpk/lib/dhe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sshpk/lib/dhe.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sshpk/lib/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sshpk/lib/errors.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sshpk/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sshpk/lib/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sshpk/lib/key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sshpk/lib/key.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sshpk/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sshpk/lib/utils.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/sshpk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/sshpk/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/statuses/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/statuses/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/statuses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/statuses/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/statuses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/statuses/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/statuses/codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/statuses/codes.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/statuses/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/statuses/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/strip-ansi/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/strip-ansi/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/strip-ansi/license -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/tweetnacl/.npmignore: -------------------------------------------------------------------------------- 1 | .eslintrc 2 | .travis.yml 3 | bower.json 4 | test 5 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/tweetnacl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/tweetnacl/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/tweetnacl/nacl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/tweetnacl/nacl.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/type-is/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/type-is/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/type-is/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/type-is/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/type-is/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/type-is/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/type-is/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/type-is/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/unpipe/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/unpipe/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/unpipe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/unpipe/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/unpipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/unpipe/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/unpipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/unpipe/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/unpipe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/unpipe/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/utils-merge/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/utils-merge/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/vary/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/vary/HISTORY.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/vary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/vary/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/vary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/vary/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/vary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/vary/index.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/vary/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/vary/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/verror/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/verror/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/verror/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/verror/LICENSE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/verror/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/verror/Makefile -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/verror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/verror/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/verror/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/verror/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/xtend/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/xtend/.jshintrc -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/xtend/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/xtend/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/xtend/LICENCE -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/xtend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/xtend/Makefile -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/xtend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/xtend/README.md -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/xtend/immutable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/xtend/immutable.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/xtend/mutable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/xtend/mutable.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/xtend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/xtend/package.json -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/node_modules/xtend/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/node_modules/xtend/test.js -------------------------------------------------------------------------------- /Chatbots in 16 Introduction/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Chatbots in 16 Introduction/package.json -------------------------------------------------------------------------------- /DevTools in 5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/DevTools in 5/.DS_Store -------------------------------------------------------------------------------- /DevTools in 5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/DevTools in 5/index.html -------------------------------------------------------------------------------- /DevTools in 5/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/DevTools in 5/main.css -------------------------------------------------------------------------------- /Directives in 9/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Directives in 9/.DS_Store -------------------------------------------------------------------------------- /Directives in 9/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Directives in 9/index.html -------------------------------------------------------------------------------- /Directives in 9/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Directives in 9/js/.DS_Store -------------------------------------------------------------------------------- /Directives in 9/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('ToDoList', []); 2 | -------------------------------------------------------------------------------- /Directives in 9/js/controllers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Directives in 9/js/controllers/.DS_Store -------------------------------------------------------------------------------- /Directives in 9/js/controllers/MainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Directives in 9/js/controllers/MainController.js -------------------------------------------------------------------------------- /Directives in 9/js/directives/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Directives in 9/js/directives/.DS_Store -------------------------------------------------------------------------------- /Directives in 9/js/directives/singlelist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Directives in 9/js/directives/singlelist.html -------------------------------------------------------------------------------- /Directives in 9/js/directives/singlelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Directives in 9/js/directives/singlelist.js -------------------------------------------------------------------------------- /Endpoints with Angular.js in 9/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Endpoints with Angular.js in 9/.DS_Store -------------------------------------------------------------------------------- /Endpoints with Angular.js in 9/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Endpoints with Angular.js in 9/index.html -------------------------------------------------------------------------------- /Endpoints with Angular.js in 9/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Endpoints with Angular.js in 9/js/.DS_Store -------------------------------------------------------------------------------- /Endpoints with Angular.js in 9/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('ToDoList', []); 2 | -------------------------------------------------------------------------------- /Endpoints with Angular.js in 9/js/controllers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Endpoints with Angular.js in 9/js/controllers/.DS_Store -------------------------------------------------------------------------------- /Endpoints with Angular.js in 9/js/directives/singlelist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Endpoints with Angular.js in 9/js/directives/singlelist.html -------------------------------------------------------------------------------- /Endpoints with Angular.js in 9/js/directives/singlelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Endpoints with Angular.js in 9/js/directives/singlelist.js -------------------------------------------------------------------------------- /HTML in 5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/HTML in 5/.DS_Store -------------------------------------------------------------------------------- /HTML in 5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/HTML in 5/index.html -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/.DS_Store -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/Procfile: -------------------------------------------------------------------------------- 1 | web: node server.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/.bin/mime: -------------------------------------------------------------------------------- 1 | ../mime/cli.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/accepts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/accepts/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/accepts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/accepts/README.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/accepts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/accepts/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/cookie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/cookie/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/cookie/README.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/cookie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/cookie/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/debug/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxbreak": true 3 | } 4 | -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/debug/.npmignore -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/debug/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/debug/History.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/debug/Makefile -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/debug/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/debug/Readme.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/debug/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/debug/bower.json -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/debug/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/debug/browser.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/debug/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/debug/debug.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/debug/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/debug/node.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/depd/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/depd/History.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/depd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/depd/Readme.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/depd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/depd/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/depd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/depd/package.json -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/destroy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/destroy/README.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/destroy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/destroy/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/ee-first/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/ee-first/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/ee-first/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/ee-first/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/etag/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/etag/HISTORY.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/etag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/etag/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/etag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/etag/README.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/etag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/etag/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/etag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/etag/package.json -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/express/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/express/Readme.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/express/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/forwarded/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/forwarded/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/fresh/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/fresh/HISTORY.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/fresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/fresh/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/fresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/fresh/README.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/fresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/fresh/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/inherits/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/inherits/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/ipaddr.js/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/ipaddr.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/ipaddr.js/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/methods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/methods/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/methods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/methods/README.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/methods/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/mime-db/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/mime-db/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/mime-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/mime-db/README.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/mime-db/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/mime-db/db.json -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/mime-db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/mime-db/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/mime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/mime/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/mime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/mime/README.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/mime/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/mime/cli.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/mime/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/mime/mime.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/mime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/mime/package.json -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/mime/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/mime/types.json -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | History.md 4 | Makefile 5 | component.json 6 | -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/ms/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/ms/History.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/ms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/ms/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/ms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/ms/README.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/ms/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/ms/package.json -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/parseurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/parseurl/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/parseurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/parseurl/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/qs/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/qs/.npmignore -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/qs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/qs/.travis.yml -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/qs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/qs/CHANGELOG.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/qs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/qs/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/qs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/qs/README.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/qs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/qs/bower.json -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/qs/lib/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/qs/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/qs/lib/parse.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/qs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/qs/lib/utils.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/qs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/qs/package.json -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/qs/test/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/qs/test/parse.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/qs/test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/qs/test/utils.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/send/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/send/HISTORY.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/send/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/send/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/send/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/send/README.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/send/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/send/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/send/package.json -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/statuses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/statuses/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/statuses/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/statuses/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/type-is/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/type-is/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/type-is/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/type-is/README.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/type-is/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/type-is/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/unpipe/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/unpipe/HISTORY.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/unpipe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/unpipe/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/unpipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/unpipe/README.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/unpipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/unpipe/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/vary/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/vary/HISTORY.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/vary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/vary/LICENSE -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/vary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/vary/README.md -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/vary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/vary/index.js -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/node_modules/vary/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/node_modules/vary/package.json -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/package.json -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/public/.DS_Store -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/public/index.html -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/public/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/public/js/.DS_Store -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/public/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('ToDoList', []); 2 | -------------------------------------------------------------------------------- /Heroku Free Web Hosting in 12/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/Heroku Free Web Hosting in 12/server.js -------------------------------------------------------------------------------- /JavaScript in 7/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/JavaScript in 7/.DS_Store -------------------------------------------------------------------------------- /JavaScript in 7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/JavaScript in 7/index.html -------------------------------------------------------------------------------- /JavaScript in 7/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/JavaScript in 7/js/script.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/README.md -------------------------------------------------------------------------------- /jQuery in 6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/jQuery in 6/.DS_Store -------------------------------------------------------------------------------- /jQuery in 6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/jQuery in 6/index.html -------------------------------------------------------------------------------- /jQuery in 6/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blondiebits/code-in-5/HEAD/jQuery in 6/js/script.js --------------------------------------------------------------------------------