├── .gitignore ├── 001 ├── .gitignore ├── README.md ├── books.json ├── books.stream ├── package.json ├── simple.js └── streams.js ├── 002 ├── README.md └── cover.jpg ├── 003 ├── README.md └── cover.jpg ├── 004 ├── .gitignore ├── README.md ├── app.js ├── config-sample.json ├── db │ └── .gitignore ├── package.json ├── static │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── navbar.css │ │ └── signin.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── html5shiv.js │ │ ├── jquery.js │ │ └── respond.min.js ├── templates │ ├── guest.html │ ├── master.html │ ├── registration.html │ └── user.html └── user.js ├── 005 └── README.md ├── 006 └── README.md ├── 007 └── README.md ├── 011 ├── config.js ├── config │ ├── .gitignore │ ├── common.json │ ├── production.json │ └── schema.js ├── index.js └── package.json ├── LICENSE ├── README.md ├── cover.jpg └── logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/.gitignore -------------------------------------------------------------------------------- /001/.gitignore: -------------------------------------------------------------------------------- 1 | books 2 | -------------------------------------------------------------------------------- /001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/001/README.md -------------------------------------------------------------------------------- /001/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/001/books.json -------------------------------------------------------------------------------- /001/books.stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/001/books.stream -------------------------------------------------------------------------------- /001/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/001/package.json -------------------------------------------------------------------------------- /001/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/001/simple.js -------------------------------------------------------------------------------- /001/streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/001/streams.js -------------------------------------------------------------------------------- /002/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/002/README.md -------------------------------------------------------------------------------- /002/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/002/cover.jpg -------------------------------------------------------------------------------- /003/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/003/README.md -------------------------------------------------------------------------------- /003/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/003/cover.jpg -------------------------------------------------------------------------------- /004/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | *.log 4 | .idea 5 | config.json -------------------------------------------------------------------------------- /004/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/README.md -------------------------------------------------------------------------------- /004/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/app.js -------------------------------------------------------------------------------- /004/config-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/config-sample.json -------------------------------------------------------------------------------- /004/db/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /004/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/package.json -------------------------------------------------------------------------------- /004/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /004/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /004/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/static/css/bootstrap.css -------------------------------------------------------------------------------- /004/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /004/static/css/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/static/css/navbar.css -------------------------------------------------------------------------------- /004/static/css/signin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/static/css/signin.css -------------------------------------------------------------------------------- /004/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /004/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /004/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /004/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /004/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/static/js/bootstrap.js -------------------------------------------------------------------------------- /004/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /004/static/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/static/js/html5shiv.js -------------------------------------------------------------------------------- /004/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/static/js/jquery.js -------------------------------------------------------------------------------- /004/static/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/static/js/respond.min.js -------------------------------------------------------------------------------- /004/templates/guest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/templates/guest.html -------------------------------------------------------------------------------- /004/templates/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/templates/master.html -------------------------------------------------------------------------------- /004/templates/registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/templates/registration.html -------------------------------------------------------------------------------- /004/templates/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/templates/user.html -------------------------------------------------------------------------------- /004/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/004/user.js -------------------------------------------------------------------------------- /005/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/005/README.md -------------------------------------------------------------------------------- /006/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/006/README.md -------------------------------------------------------------------------------- /007/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/007/README.md -------------------------------------------------------------------------------- /011/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/011/config.js -------------------------------------------------------------------------------- /011/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/011/config/.gitignore -------------------------------------------------------------------------------- /011/config/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/011/config/common.json -------------------------------------------------------------------------------- /011/config/production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/011/config/production.json -------------------------------------------------------------------------------- /011/config/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/011/config/schema.js -------------------------------------------------------------------------------- /011/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/011/index.js -------------------------------------------------------------------------------- /011/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/011/package.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/README.md -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/cover.jpg -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSPirates/podcast/HEAD/logo.png --------------------------------------------------------------------------------