gitextract_2go5jwfh/ ├── .gitignore ├── README.md ├── clientapp/ │ ├── .angular-cli.json │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── e2e/ │ │ ├── app.e2e-spec.ts │ │ ├── app.po.ts │ │ └── tsconfig.e2e.json │ ├── karma.conf.js │ ├── package.json │ ├── protractor.conf.js │ ├── src/ │ │ ├── app/ │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── backend.ts │ │ │ ├── filters/ │ │ │ │ ├── filters.component.css │ │ │ │ ├── filters.component.html │ │ │ │ └── filters.component.ts │ │ │ ├── format-rating.pipe.ts │ │ │ ├── model.ts │ │ │ ├── rate-button/ │ │ │ │ ├── rate-button.component.html │ │ │ │ └── rate-button.component.ts │ │ │ ├── talk/ │ │ │ │ ├── talk.component.css │ │ │ │ ├── talk.component.html │ │ │ │ └── talk.component.ts │ │ │ ├── talk-details/ │ │ │ │ ├── talk-details.component.css │ │ │ │ ├── talk-details.component.html │ │ │ │ └── talk-details.component.ts │ │ │ ├── talks/ │ │ │ │ ├── talks.component.css │ │ │ │ ├── talks.component.html │ │ │ │ └── talks.component.ts │ │ │ ├── talks-and-filters/ │ │ │ │ ├── talks-and-filters.component.css │ │ │ │ ├── talks-and-filters.component.html │ │ │ │ └── talks-and-filters.component.ts │ │ │ ├── watch-button/ │ │ │ │ ├── watch-button.component.html │ │ │ │ └── watch-button.component.ts │ │ │ └── watch.ts │ │ ├── assets/ │ │ │ ├── .gitkeep │ │ │ └── indigo-pink.css │ │ ├── environments/ │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json └── server/ ├── package.json ├── server.ts └── tsconfig.json