This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // GET list of public, future events | |
| getExams(): Observable<Exam[]> { | |
| return this.http | |
| .get<Exam[]>(`${API_URL}/exams`) | |
| .catch(ExamsApiService._handleError); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| """ | |
| A simple script that extracts transcripts from <http://www.ted.com> | |
| HOWTO: | |
| python ted_tracscript_extractor.py john_hodgman_s_brief_digression.html | |
| or | |