Compare commits

...

2 Commits

Author SHA1 Message Date
1d96f32e8e Added course literature, concat lecture and video dl script 2023-03-29 15:10:20 +02:00
fa91042d1e Stud.IP Sync at 02/03/2023 14:59:33
26 files were unmodified
15 files were created
2023-03-02 14:59:24 +01:00
19 changed files with 26 additions and 0 deletions

BIN
Exercise/07_solution.pdf Normal file

Binary file not shown.

BIN
Exercise/08_exercise.pdf Normal file

Binary file not shown.

BIN
Exercise/08_solution.pdf Normal file

Binary file not shown.

BIN
Exercise/09_exercise.pdf Normal file

Binary file not shown.

BIN
Exercise/09_solution.pdf Normal file

Binary file not shown.

BIN
Exercise/10_exercise.pdf Normal file

Binary file not shown.

BIN
Exercise/10_solution.pdf Normal file

Binary file not shown.

BIN
Exercise/11_exercise_QA.pdf Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Lecture/Lecture.pdf Normal file

Binary file not shown.

1
Lecture/videos/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
Recordings/

View File

@ -0,0 +1,2 @@
[InternetShortcut]
URL=https://nc20.sts.tuhh.de/s/7Drdf6s29otnxqR

View File

@ -0,0 +1,2 @@
[InternetShortcut]
URL=https://nc20.sts.tuhh.de/s/ySky2zaiyxjDzk3

View File

@ -0,0 +1,2 @@
[InternetShortcut]
URL=https://nc20.sts.tuhh.de/s/pdfGpRtEc8msXpY

View File

@ -0,0 +1,19 @@
from pathlib import Path
def main():
directory = Path(__file__).resolve().parent
for file in directory.glob("*.flv"):
with file.open() as fp:
line = fp.readline().strip()
if line != "[InternetShortcut]":
raise Exception(f"File {file} is not an internet shortcut!")
url_line = fp.readline().strip()
prefix = "URL="
if not url_line.startswith(prefix):
raise Exception(f"URL not found!")
url = url_line[len(prefix):]
print(file, url)
if __name__ == "__main__":
main()

Binary file not shown.