Compare commits

...

9 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
2695110bec Stud.IP Sync at 14/12/2022 10:05:52
20 files were unmodified
6 files were created
2022-12-14 10:05:45 +01:00
03e45c31e8 Stud.IP Sync at 30/11/2022 15:24:23
14 files were unmodified
6 files were created
2022-11-30 15:24:19 +01:00
44e31c92d3 Stud.IP Sync at 15/11/2022 12:09:36
13 files were unmodified
1 file was created
2022-11-15 12:09:32 +01:00
5333b9c27e Stud.IP Sync at 15/11/2022 08:02:59
10 files were unmodified
3 files were created
2022-11-15 08:02:52 +01:00
c63f6dd00f Stud.IP Sync at 08/11/2022 10:24:31
6 files were unmodified
4 files were created
2022-11-08 10:24:26 +01:00
13fa8ac051 Stud.IP Sync at 03/11/2022 13:16:37
3 files were created
3 files were unmodified
2022-11-03 13:16:32 +01:00
ea0a2bf94a Stud.IP Sync at 27/10/2022 17:32:27
2 files were unmodified
1 file was created
2022-10-27 17:32:22 +02:00
43 changed files with 38 additions and 0 deletions

BIN
Exercise/01_exercise.pdf Normal file

Binary file not shown.

BIN
Exercise/01_solution.pdf Normal file

Binary file not shown.

BIN
Exercise/02_exercise.pdf Normal file

Binary file not shown.

BIN
Exercise/02_solution.pdf Normal file

Binary file not shown.

BIN
Exercise/03_exercise.pdf Normal file

Binary file not shown.

BIN
Exercise/03_solution.pdf Normal file

Binary file not shown.

BIN
Exercise/04_exercise.pdf Normal file

Binary file not shown.

BIN
Exercise/04_solution.pdf Normal file

Binary file not shown.

BIN
Exercise/05_exercise.pdf Normal file

Binary file not shown.

BIN
Exercise/05_solution.pdf Normal file

Binary file not shown.

BIN
Exercise/06_exercise.pdf Normal file

Binary file not shown.

BIN
Exercise/06_solution.pdf Normal file

Binary file not shown.

BIN
Exercise/07_exercise.pdf Normal file

Binary file not shown.

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.

BIN
Lecture/04-CSP.pdf Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

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/BMame5k9ZWWt8p7

View File

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

View File

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

View File

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

View File

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

View File

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

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.