Compare commits
10 Commits
10f62c9b8b
...
101f35fa03
| Author | SHA1 | Date | |
|---|---|---|---|
| 101f35fa03 | |||
| 8d634d95f0 | |||
| 8d74b3341b | |||
|
|
910b72dfd7 | ||
|
|
b0375943e6 | ||
|
|
b0fdd30e38 | ||
|
|
f61729e6d8 | ||
|
|
6af3cec669 | ||
|
|
34775cfd93 | ||
|
|
10a81f46ff |
2
.obsidian/graph.json
vendored
2
.obsidian/graph.json
vendored
@@ -17,6 +17,6 @@
|
||||
"repelStrength": 17.61474609375,
|
||||
"linkStrength": 0.2745361328125,
|
||||
"linkDistance": 213,
|
||||
"scale": 0.017578125,
|
||||
"scale": 0.012181151280878376,
|
||||
"close": true
|
||||
}
|
||||
2
.obsidian/plugins/extended-graph/data.json
vendored
2
.obsidian/plugins/extended-graph/data.json
vendored
@@ -97,7 +97,7 @@
|
||||
"repelStrength": 17.61474609375,
|
||||
"linkStrength": 0.2745361328125,
|
||||
"linkDistance": 213,
|
||||
"scale": 0.017578125,
|
||||
"scale": 0.029613173412290975,
|
||||
"close": true
|
||||
},
|
||||
"openInNewTab": true,
|
||||
|
||||
10221
.obsidian/plugins/obsidian-pandoc/main.js
vendored
Normal file
10221
.obsidian/plugins/obsidian-pandoc/main.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
.obsidian/plugins/obsidian-pandoc/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-pandoc/manifest.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-pandoc",
|
||||
"name": "Pandoc Plugin",
|
||||
"version": "0.4.1",
|
||||
"minAppVersion": "0.12.5",
|
||||
"description": "This is a Pandoc export plugin for Obsidian. It provides commands to export to formats like DOCX, ePub and PDF.",
|
||||
"author": "Oliver Balfour",
|
||||
"authorUrl": "https://github.com/OliverBalfour/obsidian-pandoc",
|
||||
"isDesktopOnly": true
|
||||
}
|
||||
4
.obsidian/plugins/obsidian-pandoc/styles.css
vendored
Normal file
4
.obsidian/plugins/obsidian-pandoc/styles.css
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
.pandoc-plugin-error {
|
||||
color: red;
|
||||
}
|
||||
1116
.obsidian/plugins/typst/main.js
vendored
Normal file
1116
.obsidian/plugins/typst/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
13
.obsidian/plugins/typst/manifest.json
vendored
Normal file
13
.obsidian/plugins/typst/manifest.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"id": "typst",
|
||||
"name": "Typst Renderer",
|
||||
"version": "0.10.0",
|
||||
"minAppVersion": "1.0.0",
|
||||
"description": "Renders `typst` code blocks and math blocks with Typst.",
|
||||
"author": "fenjalien",
|
||||
"authorUrl": "https://github.com/fenjalien",
|
||||
"fundingUrl": {
|
||||
"GitHub Sponsor": "https://github.com/sponsors/fenjalien",
|
||||
"ko-fi": "https://ko-fi.com/fenjalien"
|
||||
}
|
||||
}
|
||||
BIN
.obsidian/plugins/typst/obsidian_typst_bg.wasm
vendored
Normal file
BIN
.obsidian/plugins/typst/obsidian_typst_bg.wasm
vendored
Normal file
Binary file not shown.
92
.obsidian/plugins/typst/styles.css
vendored
Normal file
92
.obsidian/plugins/typst/styles.css
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
/* styles */
|
||||
textarea {
|
||||
width: 100%;
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.setting-item:has(textarea),
|
||||
.font-settings,
|
||||
.package-settings {
|
||||
flex-direction: column;
|
||||
gap: 0.5em;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.is-disabled {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.add-fonts-div {
|
||||
display: flex;
|
||||
gap: 0.5em;
|
||||
}
|
||||
|
||||
.font-input {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.font-tags-div {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.5em;
|
||||
}
|
||||
|
||||
.font-tag {
|
||||
background-color: var(--interactive-normal); /* #363636 */
|
||||
border-radius: 20px;
|
||||
padding: 0.5em 0.6em 0.5em 1em;
|
||||
}
|
||||
|
||||
.tag-btn {
|
||||
margin-left: 0.6em;
|
||||
padding: 0.4em;
|
||||
}
|
||||
|
||||
.font-tag-text {
|
||||
font-size: var(--font-ui-small);
|
||||
}
|
||||
|
||||
button,
|
||||
.tag-btn {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tag-btn:hover {
|
||||
color: var(--interactive-accent);
|
||||
}
|
||||
|
||||
.typst-doc {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
typst-renderer {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.package-settings {
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
.package-settings .setting-item-description {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
|
||||
.package-item {
|
||||
display: flex;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
gap: 0.5em;
|
||||
align-items: center;
|
||||
font-size: var(--font-ui-small);
|
||||
}
|
||||
|
||||
.package-version {
|
||||
margin-left: auto;
|
||||
|
||||
}
|
||||
|
||||
.delete-pkg-btn {
|
||||
margin-top: 1.5em;
|
||||
width: max-content;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
@@ -9,6 +9,8 @@ tags:
|
||||
# 11.02.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Raum SN 19.1 ab 8h ist der Saal geöffnet
|
||||
- [x] Raum SN 19.1 ab 8h ist der Saal geöffnet
|
||||
|
||||
Bestanden mit 36,55 Punkten (1,7)
|
||||
|
||||
---
|
||||
|
||||
14
Dailys/2026/02 Februar/15.02.2026.md
Normal file
14
Dailys/2026/02 Februar/15.02.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: 15.02.2026 - Calendar
|
||||
timestamp: 15.02.2026 - 20:31
|
||||
reason: Shoduvel
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 15.02.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Task1
|
||||
|
||||
---
|
||||
19
Dailys/2026/02 Februar/18.02.2026.md
Normal file
19
Dailys/2026/02 Februar/18.02.2026.md
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
title: "18.02.2026 - Calendar"
|
||||
timestamp: "18.02.2026 - 22:02"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 18.02.2026
|
||||
|
||||
# Tasks
|
||||
- [x] Theissen Mail schicken
|
||||
- [ ] HBK Vorlage einbinden
|
||||
- [x] Stundenzettel Januar abschicken
|
||||
- [ ] KI bzgl. Jupyter fragen
|
||||
- [x] Paket stornieren
|
||||
- [ ] wegbringen
|
||||
|
||||
---
|
||||
@@ -13,5 +13,14 @@ tags:
|
||||
>**Ort**: Moritz Friseur
|
||||
>**Begin**: 12h
|
||||
|
||||
# Task
|
||||
- [ ] Friseur
|
||||
- [ ] Dauerkarten schauen
|
||||
- [ ] Iso Images installieren
|
||||
- [ ] Node 1
|
||||
- [ ] Node 2
|
||||
|
||||
0531 87890146 Georg Buhrmeister
|
||||
|
||||
|
||||
---
|
||||
@@ -11,7 +11,7 @@ thumbnail: thumbnails/resized/e3f80df020cca3c2d7e2ffdc7d968e79_86cf658e.webp
|
||||

|
||||
# 20.03.2026
|
||||
>[!info] Termin
|
||||
>**Ort**: Hamburg, Uebel & Geährlich
|
||||
>**Ort**: Hamburg, Uebel & Gefährlich
|
||||
>
|
||||
>**Begin**: 20h
|
||||
|
||||
|
||||
16
Dailys/2026/04 April/08.04.2026.md
Normal file
16
Dailys/2026/04 April/08.04.2026.md
Normal file
@@ -0,0 +1,16 @@
|
||||
---
|
||||
title: "08.04.2026 - Calendar"
|
||||
timestamp: "08.04.2026 - 11:54"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 08.04.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kunstwerk oder Maschine? Stadtideale der Moderne 9.15-10.45 01/304. Hörsaal KUWI
|
||||
- [ ] Zwischen Politik und Ästhetik: Stadttheorien seit 1800 15.00-16.30 01/304. Hörsaal KUWI
|
||||
- [ ] Ringvorlesung des Instituts für Kunstwissenschaft 18.30-20.00 02/003. Aula
|
||||
|
||||
---
|
||||
23
Dailys/2026/04 April/09.04.2026.md
Normal file
23
Dailys/2026/04 April/09.04.2026.md
Normal file
@@ -0,0 +1,23 @@
|
||||
---
|
||||
title: 09.04.2026 - Calendar
|
||||
timestamp: 09.04.2026 - 17:09
|
||||
reason: IFN Cocktailparty
|
||||
tags:
|
||||
- Calendar
|
||||
- Termin
|
||||
---
|
||||
|
||||

|
||||
>[!info] Termin
|
||||
>**Ort**: IFN
|
||||
>
|
||||
>**Begin**: 19-23h
|
||||
# 09.04.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] „Kunst ist schön, macht aber viel Arbeit.“ 8.00-9.30 01/305. Seminarraum KUWI
|
||||
- [ ] Dis_Ability Pride 11.30-13.00 01/305. Seminarraum KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 13.15-14.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 15.00-16.30 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
14
Dailys/2026/04 April/10.04.2026.md
Normal file
14
Dailys/2026/04 April/10.04.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "10.04.2026 - Calendar"
|
||||
timestamp: "10.04.2026 - 11:52"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 10.04.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Dissonanzen gestalten. 9.00-13.00 Online
|
||||
|
||||
---
|
||||
14
Dailys/2026/04 April/13.04.2026.md
Normal file
14
Dailys/2026/04 April/13.04.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "13.04.2026 - Calendar"
|
||||
timestamp: "13.04.2026 - 12:14"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 13.04.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Becoming independent 13.15-14.45 01/305. Seminarraum KUWI
|
||||
|
||||
---
|
||||
17
Dailys/2026/04 April/15.04.2026.md
Normal file
17
Dailys/2026/04 April/15.04.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "15.04.2026 - Calendar"
|
||||
timestamp: "15.04.2026 - 11:48"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 15.04.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kunstwerk oder Maschine? Stadtideale der Moderne 9.15-10.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Übung) 13.15-14.45 01/305. Seminarraum KUWI
|
||||
- [ ] Zwischen Politik und Ästhetik: Stadttheorien seit 1800 15.00-16.30 01/304. Hörsaal KUWI
|
||||
- [ ] Ringvorlesung des Instituts für Kunstwissenschaft 18.30-20.00 02/003. Aula
|
||||
|
||||
---
|
||||
17
Dailys/2026/04 April/16.04.2026.md
Normal file
17
Dailys/2026/04 April/16.04.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "16.04.2026 - Calendar"
|
||||
timestamp: "16.04.2026 - 12:11"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 16.04.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] „Kunst ist schön, macht aber viel Arbeit.“ 8.00-9.30 01/305. Seminarraum KUWI
|
||||
- [ ] Dis_Ability Pride 11.30-13.00 01/305. Seminarraum KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 13.15-14.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 15.00-16.30 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
14
Dailys/2026/04 April/20.04.2026.md
Normal file
14
Dailys/2026/04 April/20.04.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "20.04.2026 - Calendar"
|
||||
timestamp: "20.04.2026 - 12:14"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 20.04.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Becoming independent 13.15-14.45 01/305. Seminarraum KUWI
|
||||
|
||||
---
|
||||
17
Dailys/2026/04 April/22.04.2026.md
Normal file
17
Dailys/2026/04 April/22.04.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "22.04.2026 - Calendar"
|
||||
timestamp: "22.04.2026 - 11:55"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 22.04.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kunstwerk oder Maschine? Stadtideale der Moderne 9.15-10.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Übung) 13.15-14.45 01/305. Seminarraum KUWI
|
||||
- [ ] Zwischen Politik und Ästhetik: Stadttheorien seit 1800 15.00-16.30 01/304. Hörsaal KUWI
|
||||
- [ ] Ringvorlesung des Instituts für Kunstwissenschaft 18.30-20.00 02/003. Aula
|
||||
|
||||
---
|
||||
17
Dailys/2026/04 April/23.04.2026.md
Normal file
17
Dailys/2026/04 April/23.04.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "23.04.2026 - Calendar"
|
||||
timestamp: "23.04.2026 - 12:11"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 23.04.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] „Kunst ist schön, macht aber viel Arbeit.“ 8.00-9.30 01/305. Seminarraum KUWI
|
||||
- [ ] Dis_Ability Pride 11.30-13.00 01/305. Seminarraum KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 13.15-14.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 15.00-16.30 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
14
Dailys/2026/04 April/27.04.2026.md
Normal file
14
Dailys/2026/04 April/27.04.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "27.04.2026 - Calendar"
|
||||
timestamp: "27.04.2026 - 12:14"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 27.04.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Becoming independent 13.15-14.45 01/305. Seminarraum KUWI
|
||||
|
||||
---
|
||||
17
Dailys/2026/04 April/29.04.2026.md
Normal file
17
Dailys/2026/04 April/29.04.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "29.04.2026 - Calendar"
|
||||
timestamp: "29.04.2026 - 11:55"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 29.04.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kunstwerk oder Maschine? Stadtideale der Moderne 9.15-10.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Übung) 13.15-14.45 01/305. Seminarraum KUWI
|
||||
- [ ] Zwischen Politik und Ästhetik: Stadttheorien seit 1800 15.00-16.30 01/304. Hörsaal KUWI
|
||||
- [ ] Ringvorlesung des Instituts für Kunstwissenschaft 18.30-20.00 02/003. Aula
|
||||
|
||||
---
|
||||
17
Dailys/2026/04 April/30.04.2026.md
Normal file
17
Dailys/2026/04 April/30.04.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "30.04.2026 - Calendar"
|
||||
timestamp: "30.04.2026 - 12:11"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 30.04.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] „Kunst ist schön, macht aber viel Arbeit.“ 8.00-9.30 01/305. Seminarraum KUWI
|
||||
- [ ] Dis_Ability Pride 11.30-13.00 01/305. Seminarraum KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 13.15-14.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 15.00-16.30 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
@@ -20,7 +20,7 @@ darkMode: true
|
||||
marker: Home, 52.281359431757025, 10.527039320001965, Home
|
||||
marker: Home, 52.48169063395107, 10.52139870515827, Eltern
|
||||
marker: Home, 52.51044953496052, 10.628554236611079, Oma
|
||||
marker: Home, 52.2529051115019, 10.511658715458834, Bennet
|
||||
marker: Home, 52.23460462608572, 10.541547252454958, Bennet
|
||||
marker: Home, 53.570241808744534, 9.975235884756014, Sissi
|
||||
marker: Home, 52.26877169313446, 10.524758768089967, Yann
|
||||
marker: Home, 52.25194127057194, 10.506576432228517, Nova
|
||||
@@ -29,5 +29,8 @@ marker: Home, 51.05749013850783, 7.121880684303269, Giulia
|
||||
marker: Home, 52.27012393405673, 10.569767528639003, Julie
|
||||
marker: Home, 52.26740854065828, 10.543356695072406, Kalle
|
||||
marker: Home, 52.4836762204152, 10.542311835591226, Fasske
|
||||
marker: Home, 52.253592732026846, 10.54828620904024, Ole
|
||||
marker: Home, 52.25871730722632, 10.52484472709113, Joanna
|
||||
marker: Home, 52.27312659728886, 10.502836194835117, Elias
|
||||
|
||||
```
|
||||
14
Dailys/2026/05 Mai/04.05.2026.md
Normal file
14
Dailys/2026/05 Mai/04.05.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "04.05.2026 - Calendar"
|
||||
timestamp: "04.05.2026 - 12:14"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 04.05.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Becoming independent 13.15-14.45 01/305. Seminarraum KUWI
|
||||
|
||||
---
|
||||
17
Dailys/2026/05 Mai/06.05.2026.md
Normal file
17
Dailys/2026/05 Mai/06.05.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "06.05.2026 - Calendar"
|
||||
timestamp: "06.05.2026 - 11:55"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 06.05.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kunstwerk oder Maschine? Stadtideale der Moderne 9.15-10.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Übung) 13.15-14.45 01/305. Seminarraum KUWI
|
||||
- [ ] Zwischen Politik und Ästhetik: Stadttheorien seit 1800 15.00-16.30 01/304. Hörsaal KUWI
|
||||
- [ ] Ringvorlesung des Instituts für Kunstwissenschaft 18.30-20.00 02/003. Aula
|
||||
|
||||
---
|
||||
17
Dailys/2026/05 Mai/07.05.2026.md
Normal file
17
Dailys/2026/05 Mai/07.05.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "07.05.2026 - Calendar"
|
||||
timestamp: "07.05.2026 - 12:12"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 07.05.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] „Kunst ist schön, macht aber viel Arbeit.“ 8.00-9.30 01/305. Seminarraum KUWI
|
||||
- [ ] Dis_Ability Pride 11.30-13.00 01/305. Seminarraum KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 13.15-14.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 15.00-16.30 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
14
Dailys/2026/05 Mai/11.05.2026.md
Normal file
14
Dailys/2026/05 Mai/11.05.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "11.05.2026 - Calendar"
|
||||
timestamp: "11.05.2026 - 12:15"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 11.05.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Becoming independent 13.15-14.45 01/305. Seminarraum KUWI
|
||||
|
||||
---
|
||||
17
Dailys/2026/05 Mai/13.05.2026.md
Normal file
17
Dailys/2026/05 Mai/13.05.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "13.05.2026 - Calendar"
|
||||
timestamp: "13.05.2026 - 11:55"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 13.05.2026
|
||||
|
||||
# # Tasks
|
||||
- [ ] Kunstwerk oder Maschine? Stadtideale der Moderne 9.15-10.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Übung) 13.15-14.45 01/305. Seminarraum KUWI
|
||||
- [ ] Zwischen Politik und Ästhetik: Stadttheorien seit 1800 15.00-16.30 01/304. Hörsaal KUWI
|
||||
- [ ] Ringvorlesung des Instituts für Kunstwissenschaft 18.30-20.00 02/003. Aula
|
||||
|
||||
---
|
||||
17
Dailys/2026/05 Mai/14.05.2026.md
Normal file
17
Dailys/2026/05 Mai/14.05.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "14.05.2026 - Calendar"
|
||||
timestamp: "14.05.2026 - 12:12"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 14.05.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] „Kunst ist schön, macht aber viel Arbeit.“ 8.00-9.30 01/305. Seminarraum KUWI
|
||||
- [ ] Dis_Ability Pride 11.30-13.00 01/305. Seminarraum KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 13.15-14.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 15.00-16.30 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
14
Dailys/2026/05 Mai/18.05.2026.md
Normal file
14
Dailys/2026/05 Mai/18.05.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "18.05.2026 - Calendar"
|
||||
timestamp: "18.05.2026 - 12:15"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 18.05.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Becoming independent 13.15-14.45 01/305. Seminarraum KUWI
|
||||
|
||||
---
|
||||
17
Dailys/2026/05 Mai/20.05.2026.md
Normal file
17
Dailys/2026/05 Mai/20.05.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "20.05.2026 - Calendar"
|
||||
timestamp: "20.05.2026 - 11:55"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 20.05.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kunstwerk oder Maschine? Stadtideale der Moderne 9.15-10.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Übung) 13.15-14.45 01/305. Seminarraum KUWI
|
||||
- [ ] Zwischen Politik und Ästhetik: Stadttheorien seit 1800 15.00-16.30 01/304. Hörsaal KUWI
|
||||
- [ ] Ringvorlesung des Instituts für Kunstwissenschaft 18.30-20.00 02/003. Aula
|
||||
|
||||
---
|
||||
17
Dailys/2026/05 Mai/21.05.2026.md
Normal file
17
Dailys/2026/05 Mai/21.05.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "21.05.2026 - Calendar"
|
||||
timestamp: "21.05.2026 - 12:12"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 21.05.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] „Kunst ist schön, macht aber viel Arbeit.“ 8.00-9.30 01/305. Seminarraum KUWI
|
||||
- [ ] Dis_Ability Pride 11.30-13.00 01/305. Seminarraum KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 13.15-14.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 15.00-16.30 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
14
Dailys/2026/05 Mai/23.05.2026.md
Normal file
14
Dailys/2026/05 Mai/23.05.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: 23.05.2026 - Calendar
|
||||
timestamp: 23.05.2026 - 21:49
|
||||
reason: CSD Hannover
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 23.05.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Task1
|
||||
|
||||
---
|
||||
17
Dailys/2026/05 Mai/27.05.2026.md
Normal file
17
Dailys/2026/05 Mai/27.05.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "27.05.2026 - Calendar"
|
||||
timestamp: "27.05.2026 - 11:56"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 27.05.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kunstwerk oder Maschine? Stadtideale der Moderne 9.15-10.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Übung) 13.15-14.45 01/305. Seminarraum KUWI
|
||||
- [ ] Zwischen Politik und Ästhetik: Stadttheorien seit 1800 15.00-16.30 01/304. Hörsaal KUWI
|
||||
- [ ] Ringvorlesung des Instituts für Kunstwissenschaft 18.30-20.00 02/003. Aula
|
||||
|
||||
---
|
||||
17
Dailys/2026/05 Mai/28.05.2026.md
Normal file
17
Dailys/2026/05 Mai/28.05.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "28.05.2026 - Calendar"
|
||||
timestamp: "28.05.2026 - 12:12"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 28.05.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] „Kunst ist schön, macht aber viel Arbeit.“ 8.00-9.30 01/305. Seminarraum KUWI
|
||||
- [ ] Dis_Ability Pride 11.30-13.00 01/305. Seminarraum KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 13.15-14.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 15.00-16.30 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
14
Dailys/2026/05 Mai/29.05.2026.md
Normal file
14
Dailys/2026/05 Mai/29.05.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: 29.05.2026 - Calendar
|
||||
timestamp: 29.05.2026 - 11:49
|
||||
reason: Absprache Thema für Dissonanzen Gestalten
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 29.05.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kuratorische Praxis 10.00-15.00 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
14
Dailys/2026/06 Juni/01.06.2026.md
Normal file
14
Dailys/2026/06 Juni/01.06.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "01.06.2026 - Calendar"
|
||||
timestamp: "01.06.2026 - 12:15"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 01.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Becoming independent 13.15-14.45 01/305. Seminarraum KUWI
|
||||
|
||||
---
|
||||
17
Dailys/2026/06 Juni/03.06.2026.md
Normal file
17
Dailys/2026/06 Juni/03.06.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "03.06.2026 - Calendar"
|
||||
timestamp: "03.06.2026 - 11:56"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 03.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kunstwerk oder Maschine? Stadtideale der Moderne 9.15-10.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Übung) 13.15-14.45 01/305. Seminarraum KUWI
|
||||
- [ ] Zwischen Politik und Ästhetik: Stadttheorien seit 1800 15.00-16.30 01/304. Hörsaal KUWI
|
||||
- [ ] Ringvorlesung des Instituts für Kunstwissenschaft 18.30-20.00 02/003. Aula
|
||||
|
||||
---
|
||||
17
Dailys/2026/06 Juni/04.06.2026.md
Normal file
17
Dailys/2026/06 Juni/04.06.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "04.06.2026 - Calendar"
|
||||
timestamp: "04.06.2026 - 12:12"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 04.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] „Kunst ist schön, macht aber viel Arbeit.“ 8.00-9.30 01/305. Seminarraum KUWI
|
||||
- [ ] Dis_Ability Pride 11.30-13.00 01/305. Seminarraum KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 13.15-14.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 15.00-16.30 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
14
Dailys/2026/06 Juni/05.06.2026.md
Normal file
14
Dailys/2026/06 Juni/05.06.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "05.06.2026 - Calendar"
|
||||
timestamp: "05.06.2026 - 11:52"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 05.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Dissonanzen gestalten. 14.00-20.00 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
14
Dailys/2026/06 Juni/06.06.2026.md
Normal file
14
Dailys/2026/06 Juni/06.06.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: 06.06.2026 - Calendar
|
||||
timestamp: 06.06.2026 - 11:53
|
||||
reason: Vortrag Postbinäre Cyborgs
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 06.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Dissonanzen gestalten. 9.00-17.00 01/304. Hörsaal KUWI
|
||||
![[Seminarplan_Dissonanzen.pdf#page=2]]
|
||||
---
|
||||
14
Dailys/2026/06 Juni/08.06.2026.md
Normal file
14
Dailys/2026/06 Juni/08.06.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "08.06.2026 - Calendar"
|
||||
timestamp: "08.06.2026 - 12:15"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 08.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Becoming independent 13.15-14.45 01/305. Seminarraum KUWI
|
||||
|
||||
---
|
||||
17
Dailys/2026/06 Juni/10.06.2026.md
Normal file
17
Dailys/2026/06 Juni/10.06.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "10.06.2026 - Calendar"
|
||||
timestamp: "10.06.2026 - 11:56"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 10.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kunstwerk oder Maschine? Stadtideale der Moderne 9.15-10.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Übung) 13.15-14.45 01/305. Seminarraum KUWI
|
||||
- [ ] Zwischen Politik und Ästhetik: Stadttheorien seit 1800 15.00-16.30 01/304. Hörsaal KUWI
|
||||
- [ ] Ringvorlesung des Instituts für Kunstwissenschaft 18.30-20.00 02/003. Aula
|
||||
|
||||
---
|
||||
17
Dailys/2026/06 Juni/11.06.2026.md
Normal file
17
Dailys/2026/06 Juni/11.06.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "11.06.2026 - Calendar"
|
||||
timestamp: "11.06.2026 - 12:13"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 11.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] „Kunst ist schön, macht aber viel Arbeit.“ 8.00-9.30 01/305. Seminarraum KUWI
|
||||
- [ ] Dis_Ability Pride 11.30-13.00 01/305. Seminarraum KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 13.15-14.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 15.00-16.30 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
15
Dailys/2026/06 Juni/12.06.2026.md
Normal file
15
Dailys/2026/06 Juni/12.06.2026.md
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
title: "12.06.2026 - Calendar"
|
||||
timestamp: "12.06.2026 - 11:49"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 12.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kuratorische Praxis 10.00-15.00 01/305. Seminarraum KUWI
|
||||
- [ ] Dissonanzen gestalten. 8.30-14.30 01/304. Online
|
||||
|
||||
---
|
||||
14
Dailys/2026/06 Juni/15.06.2026.md
Normal file
14
Dailys/2026/06 Juni/15.06.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "15.06.2026 - Calendar"
|
||||
timestamp: "15.06.2026 - 12:16"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 15.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Becoming independent 13.15-14.45 01/305. Seminarraum KUWI
|
||||
|
||||
---
|
||||
16
Dailys/2026/06 Juni/17.06.2026.md
Normal file
16
Dailys/2026/06 Juni/17.06.2026.md
Normal file
@@ -0,0 +1,16 @@
|
||||
---
|
||||
title: "17.06.2026 - Calendar"
|
||||
timestamp: "17.06.2026 - 11:56"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 17.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kunstwerk oder Maschine? Stadtideale der Moderne 9.15-10.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Übung) 13.15-14.45 01/305. Seminarraum KUWI
|
||||
- [ ] Zwischen Politik und Ästhetik: Stadttheorien seit 1800 15.00-16.30 01/304. Hörsaal KUWI
|
||||
- [ ] Ringvorlesung des Instituts für Kunstwissenschaft 18.30-20.00 02/003. Aula
|
||||
---
|
||||
17
Dailys/2026/06 Juni/18.06.2026.md
Normal file
17
Dailys/2026/06 Juni/18.06.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "18.06.2026 - Calendar"
|
||||
timestamp: "18.06.2026 - 12:13"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 18.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] „Kunst ist schön, macht aber viel Arbeit.“ 8.00-9.30 01/305. Seminarraum KUWI
|
||||
- [ ] Dis_Ability Pride 11.30-13.00 01/305. Seminarraum KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 13.15-14.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 15.00-16.30 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
14
Dailys/2026/06 Juni/22.06.2026.md
Normal file
14
Dailys/2026/06 Juni/22.06.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "22.06.2026 - Calendar"
|
||||
timestamp: "22.06.2026 - 12:16"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 22.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Becoming independent 13.15-14.45 01/305. Seminarraum KUWI
|
||||
|
||||
---
|
||||
17
Dailys/2026/06 Juni/24.06.2026.md
Normal file
17
Dailys/2026/06 Juni/24.06.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "24.06.2026 - Calendar"
|
||||
timestamp: "24.06.2026 - 11:56"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 24.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kunstwerk oder Maschine? Stadtideale der Moderne 9.15-10.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Übung) 13.15-14.45 01/305. Seminarraum KUWI
|
||||
- [ ] Zwischen Politik und Ästhetik: Stadttheorien seit 1800 15.00-16.30 01/304. Hörsaal KUWI
|
||||
- [ ] Ringvorlesung des Instituts für Kunstwissenschaft 18.30-20.00 02/003. Aula
|
||||
|
||||
---
|
||||
17
Dailys/2026/06 Juni/25.06.2026.md
Normal file
17
Dailys/2026/06 Juni/25.06.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "25.06.2026 - Calendar"
|
||||
timestamp: "25.06.2026 - 12:13"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 25.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] „Kunst ist schön, macht aber viel Arbeit.“ 8.00-9.30 01/305. Seminarraum KUWI
|
||||
- [ ] Dis_Ability Pride 11.30-13.00 01/305. Seminarraum KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 13.15-14.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 15.00-16.30 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
14
Dailys/2026/06 Juni/26.06.2026.md
Normal file
14
Dailys/2026/06 Juni/26.06.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "26.06.2026 - Calendar"
|
||||
timestamp: "26.06.2026 - 11:49"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 26.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kuratorische Praxis 10.00-15.00 01/305. Seminarraum KUWI
|
||||
|
||||
---
|
||||
14
Dailys/2026/06 Juni/29.06.2026.md
Normal file
14
Dailys/2026/06 Juni/29.06.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "29.06.2026 - Calendar"
|
||||
timestamp: "29.06.2026 - 12:16"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 29.06.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Becoming independent 13.15-14.45 01/305. Seminarraum KUWI
|
||||
|
||||
---
|
||||
16
Dailys/2026/07 July/01.07.2026.md
Normal file
16
Dailys/2026/07 July/01.07.2026.md
Normal file
@@ -0,0 +1,16 @@
|
||||
---
|
||||
title: "01.07.2026 - Calendar"
|
||||
timestamp: "01.07.2026 - 11:56"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 01.07.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kunstwerk oder Maschine? Stadtideale der Moderne 9.15-10.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Übung) 13.15-14.45 01/305. Seminarraum KUWI
|
||||
- [ ] Zwischen Politik und Ästhetik: Stadttheorien seit 1800 15.00-16.30 01/304. Hörsaal KUWI
|
||||
- [ ] Ringvorlesung des Instituts für Kunstwissenschaft 18.30-20.00 02/003. Aula
|
||||
---
|
||||
17
Dailys/2026/07 July/02.07.2026.md
Normal file
17
Dailys/2026/07 July/02.07.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "02.07.2026 - Calendar"
|
||||
timestamp: "02.07.2026 - 12:13"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 02.07.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] „Kunst ist schön, macht aber viel Arbeit.“ 8.00-9.30 01/305. Seminarraum KUWI
|
||||
- [ ] Dis_Ability Pride 11.30-13.00 01/305. Seminarraum KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 13.15-14.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 15.00-16.30 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
14
Dailys/2026/07 July/03.07.2026.md
Normal file
14
Dailys/2026/07 July/03.07.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "03.07.2026 - Calendar"
|
||||
timestamp: "03.07.2026 - 11:50"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 03.07.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kuratorische Praxis 10.00-15.00 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
14
Dailys/2026/07 July/06.07.2026.md
Normal file
14
Dailys/2026/07 July/06.07.2026.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: "06.07.2026 - Calendar"
|
||||
timestamp: "06.07.2026 - 12:16"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 06.07.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Becoming independent 13.15-14.45 01/305. Seminarraum KUWI
|
||||
|
||||
---
|
||||
18
Dailys/2026/07 July/08.07.2026.md
Normal file
18
Dailys/2026/07 July/08.07.2026.md
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
title: "08.07.2026 - Calendar"
|
||||
timestamp: "08.07.2026 - 11:56"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 08.07.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] Kunstwerk oder Maschine? Stadtideale der Moderne 9.15-10.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Übung) 13.15-14.45 01/305. Seminarraum KUWI
|
||||
- [ ] Zwischen Politik und Ästhetik: Stadttheorien seit 1800 15.00-16.30 01/304. Hörsaal KUWI
|
||||
- [ ] Ringvorlesung des Instituts für Kunstwissenschaft 18.30-20.00 02/003. Aula
|
||||
|
||||
|
||||
---
|
||||
17
Dailys/2026/07 July/09.07.2026.md
Normal file
17
Dailys/2026/07 July/09.07.2026.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: "09.07.2026 - Calendar"
|
||||
timestamp: "09.07.2026 - 12:13"
|
||||
reason:
|
||||
tags:
|
||||
- Calendar
|
||||
---
|
||||

|
||||
# 09.07.2026
|
||||
|
||||
# Tasks
|
||||
- [ ] „Kunst ist schön, macht aber viel Arbeit.“ 8.00-9.30 01/305. Seminarraum KUWI
|
||||
- [ ] Dis_Ability Pride 11.30-13.00 01/305. Seminarraum KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 13.15-14.45 01/304. Hörsaal KUWI
|
||||
- [ ] Grund- und Unbegrifflichkeiten (Vorlesung) 15.00-16.30 01/304. Hörsaal KUWI
|
||||
|
||||
---
|
||||
22
Dailys/2026/08 August/09.08.2026.md
Normal file
22
Dailys/2026/08 August/09.08.2026.md
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
title: 09.08.2026 - Calendar
|
||||
timestamp: 09.08.2026 - 11:09
|
||||
reason: Holy am MEC
|
||||
tags:
|
||||
- Calendar
|
||||
- Termin
|
||||
---
|
||||

|
||||
# 09.08.2026
|
||||
|
||||
>[!info] Termin
|
||||
>**Ort**: MEC
|
||||
>
|
||||
>**Begin**: 13-19h
|
||||
|
||||
# Tasks
|
||||
- [ ] Ticket hat Nova
|
||||
|
||||
|
||||
|
||||
---
|
||||
@@ -29,6 +29,14 @@ marker: Party, 52.26417229743759, 10.525041478011556, [[31.01.2026|Calvins Gebur
|
||||
|
||||
marker: Veranstaltung, 52.29027149458319, 10.519518126627126, [[08.02.2026|Superbowl]]
|
||||
|
||||
marker: Party, 52.26225357477723, 10.52638772181078, [[15.02.2026|Shoduvel]]
|
||||
|
||||
marker: Konzert, 53.556498523196574, 9.970009790796112, [[20.03.2026|6€90]]
|
||||
|
||||
marker: Party, 52.27346894031721, 10.525974496905546, [[24.04.2025|IFN Cocktailparty]]
|
||||
|
||||
marker: Veranstaltung, 52.37314221005079, 9.740101002500348, [[23.05.2026|CSD Hannover]]
|
||||
|
||||
marker: Party, 52.258800059415925, 10.48277036498852, [[09.08.2026|Holy]]
|
||||
|
||||
```
|
||||
|
||||
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
7855
Documents/Arbeit/IFN/Programmieren WiSe 24 25/Folien/6.Lösungen_Monte_Carlo.html
Executable file
7855
Documents/Arbeit/IFN/Programmieren WiSe 24 25/Folien/6.Lösungen_Monte_Carlo.html
Executable file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
11915
Documents/Arbeit/IFN/Programmieren WiSe 24 25/Folien/8.Folium_Lösungen.slides.html
Executable file
11915
Documents/Arbeit/IFN/Programmieren WiSe 24 25/Folien/8.Folium_Lösungen.slides.html
Executable file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
8309
Documents/Arbeit/IFN/Programmieren WiSe 24 25/Folien/Tutorial1_Lösungen.html
Executable file
8309
Documents/Arbeit/IFN/Programmieren WiSe 24 25/Folien/Tutorial1_Lösungen.html
Executable file
File diff suppressed because one or more lines are too long
7934
Documents/Arbeit/IFN/Programmieren WiSe 24 25/Folien/Tutorial2_Lösungen.html
Executable file
7934
Documents/Arbeit/IFN/Programmieren WiSe 24 25/Folien/Tutorial2_Lösungen.html
Executable file
File diff suppressed because one or more lines are too long
7934
Documents/Arbeit/IFN/Programmieren WiSe 24 25/Folien/Tutorial2_Lösungen.html
Executable file
7934
Documents/Arbeit/IFN/Programmieren WiSe 24 25/Folien/Tutorial2_Lösungen.html
Executable file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,9 @@
|
||||
Name;Größe;Vorname;Nachname;Downloads;Datum;Pfad
|
||||
3.Extended_Applications_Lösungen.html;285641;Phil;Keier;15;"18.11.2024 11:41";3.Extended_Applications_Lösungen.html
|
||||
4.NumPy_MatPlotLib_Lösungen.html;495133;Phil;Keier;13;"05.12.2024 12:13";4.NumPy_MatPlotLib_Lösungen.html
|
||||
6.Lösungen_Monte_Carlo.html;404898;Phil;Keier;11;"13.12.2024 12:46";6.Lösungen_Monte_Carlo.html
|
||||
7.Lösungen_Pandas_Seaborn.slides.html;464168;Phil;Keier;13;"13.12.2024 12:46";7.Lösungen_Pandas_Seaborn.slides.html
|
||||
8.Folium_Lösungen.slides.html;450681;Phil;Keier;9;"23.01.2025 10:55";8.Folium_Lösungen.slides.html
|
||||
9.Lösungen_Statistical_Test_Methods.slides.html;314938;Phil;Keier;17;"23.01.2025 10:55";9.Lösungen_Statistical_Test_Methods.slides.html
|
||||
Tutorial1_Lösungen.html;311997;Phil;Keier;34;"04.11.2024 17:26";Tutorial1_Lösungen.html
|
||||
Tutorial2_Lösungen.html;293798;Phil;Keier;25;"08.11.2024 12:01";Tutorial2_Lösungen.html
|
||||
|
File diff suppressed because it is too large
Load Diff
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Groups/Gruppe1.pdf
Normal file
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Groups/Gruppe1.pdf
Normal file
Binary file not shown.
17683
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Groups/Gruppe3.pdf
Normal file
17683
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Groups/Gruppe3.pdf
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Groups/Gruppe4.pdf
Normal file
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Groups/Gruppe4.pdf
Normal file
Binary file not shown.
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Groups/Gruppe5.pdf
Normal file
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Groups/Gruppe5.pdf
Normal file
Binary file not shown.
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Groups/Gruppe6.pdf
Normal file
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Groups/Gruppe6.pdf
Normal file
Binary file not shown.
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Groups/Gruppe7.pdf
Normal file
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Groups/Gruppe7.pdf
Normal file
Binary file not shown.
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Groups/Gruppe8.pdf
Normal file
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Groups/Gruppe8.pdf
Normal file
Binary file not shown.
@@ -90,4 +90,42 @@ $$\text{Birth Rate} = \frac{B}{P} * 1000$$
|
||||
Annemike Rörig anschreiben
|
||||
|
||||
|
||||
result
|
||||
------------------------------------------
|
||||
Dania Arshad: 126.5 / 282 44.9%
|
||||
Jamie Beu: 240 / 282 85.1%
|
||||
Michael Biermann: 258.5 / 282 91.7%
|
||||
Antonia Lilli Elsner: 234 / 282 83.0%
|
||||
Lillian Fitzner: 248.5 / 282 88.1%
|
||||
Nicole Funke: 267.5 / 282 94.9%
|
||||
Julia Gebel: 269 / 282 95.4%
|
||||
Alexandra Geworsky: 232 / 282 82.3%
|
||||
Zoe Giese: 260.5 / 282 92.4%
|
||||
Jule Hansen: 258 / 282 91.5%
|
||||
Annelie Hartkopp: 167 / 282 59.2%
|
||||
Hermine Hesse: 177 / 282 62.8%
|
||||
Mirja Jordan: 228 / 282 80.9%
|
||||
Julianne Kitzinger: 243 / 282 86.2%
|
||||
Wenyu Liu: 161.5 / 282 57.3%
|
||||
Daniel Lock: 235.5 / 282 83.5%
|
||||
Tim Matschulla: 207.5 / 282 73.6%
|
||||
Franka Milbrandt: 264 / 282 93.6%
|
||||
Linda Plöger: 244 / 282 86.5%
|
||||
Adrian Reis: 179.5 / 282 63.7%
|
||||
Annemike Rörig: 194 / 282 68.8%
|
||||
Kenji Sato: 249.5 / 282 88.5%
|
||||
Helene Scheler: 192 / 282 68.1%
|
||||
Fiona Schmitz: 244 / 282 86.5%
|
||||
Marie-Christine Schmitz: 236 / 282 83.7%
|
||||
Jenna Seeger: 237.5 / 282 84.2%
|
||||
Jette Siever: 240.5 / 282 85.3%
|
||||
Josefine Sinkemat: 187 / 282 66.3%
|
||||
Agatha Stark: 194.5 / 282 69.0%
|
||||
Ye Sun: 234 / 282 83.0%
|
||||
Arian Temouri: 239 / 282 84.8%
|
||||
Alexander Trey: 259.5 / 282 92.0%
|
||||
Denis Weber: 230 / 282 81.6%
|
||||
Elina Winkler: 243 / 282 86.2%
|
||||
Fabian Zirkel: 265 / 282 94.0%
|
||||
|
||||
|
||||
|
||||
@@ -50,10 +50,10 @@ Gruppe 8: Discovery of Handwashing
|
||||
- Zoe Giese
|
||||
- Jule Hansen
|
||||
- Alexander Trey
|
||||
- Marie-Christine Schmitz
|
||||
|
||||
### 06.03.2026
|
||||
Gruppe 1: Pay Gap
|
||||
- Congyu Ding
|
||||
- Annelie Hartkopp
|
||||
- Helen Looney
|
||||
- Adrian Reis
|
||||
@@ -70,14 +70,15 @@ Gruppe 6: Hochschulstatistiken
|
||||
- Linda Plöger
|
||||
- Fiona Schmitz
|
||||
- Jette Siever
|
||||
- Josefine Sinkemat
|
||||
- Denis Weber
|
||||
- Josefine Sinkemat
|
||||
|
||||
Gruppe 7: Extramarital Affairs
|
||||
- Dania Arshad
|
||||
- Nicole Funke
|
||||
- Agatha Stark
|
||||
- Michael Biermann
|
||||
- Michael Biermann (Prüfungsleistung)
|
||||
- Tim Matschulla
|
||||
|
||||
|
||||
|
||||
|
||||
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Projekte.pdf
Normal file
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/Projekte.pdf
Normal file
Binary file not shown.
@@ -1,38 +1,36 @@
|
||||
Nachname,Vorname,Hauptfach,Nebenfach,Abschluss,Semester,HBK Mat-Nr.,TU Mat-Nr.,Jupyter ID,1. Tutorial (31),2. Tutorial (17),3. Extended Applications (26),4. NumPy & MatPlotLib (45),5. SciPy (45),6. Monte Carlo Simulation (40),7. Pandas (25),8. Statistical Test Methods (28),9. Folium (25),10. Data Analysis 1,11. Data Analysis 2,Bestanden?
|
||||
Arshad,Dania,Medienwissenschaften,English Studies,B.A.,3,79842,5537743,de3954e1b873bd08905abd86f101e665,7,9,19,17.5,23,14,20,4,13,0,0,
|
||||
Beu,Jamie,Medienwissenschaften,Kunstwissenschaften,B.A.,3,79721,5534234,ef2b8977b9b4b8f3c080fccb150ca4a2,25,16,21,31,42,39,19,26,21,0,0,
|
||||
Biermann,Michael,Chemie,,M.Sc.,11,,5600913,820835991a0207b4ea61c8310ef41cf1,31,18,19,39.5,45,33,25,28,20,0,0,
|
||||
Ding,Congyu,Elektromobilität,,,5,,5448142,3fdbb54e2bdd8480287fc8529c4c754b,23,18,10,20,0,0,0,0,0,0,0,
|
||||
Du,Haoyu,Elektrotechnik,,B.A.,6,,5386615,7233c47252c0c87a374d99ce0976644c,31,18,17,20,0,0,0,0,0,0,0,
|
||||
Elsner,Antonia Lilli,Medienwissenschaften,English Studies,B.A.,3,79723,5536717,3dc93e90a5fffc4a8870cf8d2c59591d,18,12,23,28,43,40,23,27,20,0,0,
|
||||
Fitzner,Lillian,Medienwissenschaften,Kunstwissenschaften,B.A.,3,79831,5534049,895d019a8ada1744ade79ec0f61f3c1c,27.5,16,21,34,41,40,20,28,21,0,0,
|
||||
Funke,Nicole,Medienwissenschaften,English Studies,B.A.,3,79726,5537178,158abd68eff3Af7998afa75b08bc9a65,30,18,22,41.5,45,40,24,26,21,0,0,
|
||||
Gebel,Julia,,,,,,,8d0e1c984aa7481fe1ce44e3480fd081,31,18,26,41,46,38,25,23,0,0,0,
|
||||
Geworsky,Alexandra,,,,,,,397339b72e2a237b7a210d2f4baaef68,23,16,18,30,37,37,24,26,21,0,0,
|
||||
Giese,Zoe,Medienwissenschaften,English Studies,B.A.,3,79762,5539156,002e83be0271ebf504f4f58b45be4b56,31,18,23,32.5,45,38,24,28,21,0,0,
|
||||
Hansen,Jule,Medienwissenschaften,English Studies,B.A.,3,79727,5536791,bba69c41ee850ded5ea71157efe5d288,30,15,23,38,42,38,24,28,20,0,0,
|
||||
Hartkopp,Annelie,Medienwissenschaften,English Studies,B.A.,3,79763,4962494,d7e25782d71197d29f2d87b7be6803c8,22,18,23,34,22,9,0,28,11,0,0,
|
||||
Hesse,Hermine,Medienwissenschaften,Kunstwissenschaften,B.A.,3,79764,5533282,59a324b9f6417f8407ec39138cfa5810,27,12,22,18,25,36,4,12,21,0,0,
|
||||
Jordan,Mirja,Medienwissenschaften,English Studies,B.A.,3,79837,5536452,f9dcf7bc0e7adb10e59406f5ff7ffa66,21,14,19,30,33,38,25,28,20,0,0,
|
||||
Kitzinger,Julianne,Medienwissenschaften,Germanistik,B.A.,3,79844,5536522,46791f2ba3fcb9a7eee82616cf23ba1a,23,16,23,29,45,38,24,26,19,0,0,
|
||||
Liu,Wenyu,Elektromobilität,,B.A.,5,,5452211,3a69ddb89d6bdab557065d8fc681876f,17,18,22,30.5,44,18,12,0,0,0,0,
|
||||
Lock,Daniel,Medienwissenschaften,Kunstwissenschaften,B.A.,3,79832,5535020,222ebe3af7287479011e87e114b801cc,25.5,14,23,24,44,40,24,26,15,0,0,
|
||||
Matschulla,Tim,Medienwissenschaften,Germanistik,B.A.,5,78633,5415658,592dab7a9613cd61985725b3af4a0ddc,21.5,16,18,31,31,27,21,26,16,0,0,
|
||||
Milbrandt,Franka,,,,,,,717c2ded5848282e7e46e447723c65c5,30,18,20,43,45,39,23,25,21,0,0,
|
||||
Plöger,Linda,,,,,,,890fae02f2999a1d407ccafdc822e666,31,18,25,31,30,38,22,28,21,0,0,
|
||||
Reis,Adrian,Medienwissenschaften,Visuelle Kommunikation,B.A.,3,79840,5539135,13b364417d638cd95b115e40b3d07ce8,27,14,19.5,17,36,40,14,12,0,0,0,
|
||||
Rörig,Annemike,Medienwissenschaften,Germanistik,B.A.,3,79834,5534247,e4f786874461a353d1a9160e12e90d41,18,17,21,40,24,27,16,12,19,0,0,
|
||||
Sato,Kenji,Medienwissenschaften,English Studies,B.A.,1,80811,5635355,7f79b060fd89efbde4d8c800f03ccc43,25,17.5,23,39,44,33,19,28,21,0,0,
|
||||
Scheler,Helene,Medienwissenschaften,Kunstwissenschaften,B.A.,3,79794,5540057,03a954bc9e3c15a8dc79b2683de6cfd8,27,18,9,28,11,33,23,26,17,0,0,
|
||||
Schmitz,Fiona,Medienwissenschaften,English Studies,B.A.,3,79836,5545416,ed28f139682510181f2c98097162cd4d,30,16,19,38,43,27,23,28,20,0,0,
|
||||
Schmitz,Marie-Christine,,,,,,,6346e0b96e57f2fb5639874e6aa767a7,29,17,25,33,21,40,23,28,20,0,0,
|
||||
Seeger,Jenna,Medienwissenschaften,English Studies,B.A.,3,79931,5369131,1e364e36db3677e6c04a76b854c74b9b,24,16,21,32.5,44,40,24,25,11,0,0,
|
||||
Siever,Jette,Medienwissenschaften,English Studies,B.A.,3,79841,5536577,45c13e9435f2d9f531ce9a474f53d22d,27.5,18,23,33,45,38,21,14,21,0,0,
|
||||
Sinkemat,Josefine,Medienwissenschaften,English Studies,B.A.,5,78685,5313220,2fb883da49cc29a2b004ddb4c7bc411a,27,15,22,37,27,39,15,5,0,0,0,
|
||||
Stark,Agatha,Medienwissenschaften,Visuelle Kommunikation,B.A.,3,79803,5543511,83dc6d8430fd921bf1f4f0e6df7bad72,15,18,12,22,38,39,24.5,12,14,0,0,
|
||||
Sun,Ye,,,,6,,5384413,1852edad2f899b55e9c8680492682acb,31,18,20,40,45,35,24,0,21,0,0,
|
||||
Temouri,Arian,Medienwissenschaften,Kunstwissenschaften,B.A.,3,79843,5531981,6c7a48ff6f8320356fdd6f12c4e6c278,22,16,21,27.5,42,39,23.5,27,21,0,0,
|
||||
Trey,Alexander,,,,,,,8e3eb0f93bd1058db1eb38f1fc10d55c,30,18,25,42,43,40,21.5,19,21,0,0,
|
||||
Weber,Denis,,,,,,,61b3a94e4c79c9db1c0edeb011c07f60,31,16,22.5,27.5,26,34,24,28,21,0,0,
|
||||
Winkler,Elina,Medienwissenschaften,Germanistik,B.A.,3,79835,5537769,0491080f2bc88f0a0a3efc6e2b59de08,25,17,21,35,38,40,24,27,16,0,0,
|
||||
Zirkel,Fabian,Medienwissenschaften,Germanistik,B.A.,3,79722,5538430,e850a3fc85780779ce120bd3f8da8379,28,18,25,42,42,40,23,27,20,0,0,
|
||||
Nachname,Vorname,Hauptfach,Nebenfach,Abschluss,Semester,HBK Mat-Nr.,TU Mat-Nr.,Jupyter ID,1. Tutorial (31),2. Tutorial (17),3. Extended Applications (26),4. NumPy & MatPlotLib (45),5. SciPy (45),6. Monte Carlo Simulation (40),7. Pandas (25),8. Statistical Test Methods (28),9. Folium (25),10. Data Analysis 1,11. Data Analysis 2,Gesamt (282),Bestanden?
|
||||
Arshad,Dania,Medienwissenschaften,English Studies,B.A.,3,79842,5537743,de3954e1b873bd08905abd86f101e665,7,9,19,17.5,23,14,20,4,13,0,0,126.5,
|
||||
Beu,Jamie,Medienwissenschaften,Kunstwissenschaften,B.A.,3,79721,5534234,ef2b8977b9b4b8f3c080fccb150ca4a2,25,16,21,31,42,39,19,26,21,0,0,240,
|
||||
Biermann,Michael,Chemie,,M.Sc.,11,,5600913,820835991a0207b4ea61c8310ef41cf1,31,18,19,39.5,45,33,25,28,20,0,0,258.5,
|
||||
Elsner,Antonia Lilli,Medienwissenschaften,English Studies,B.A.,3,79723,5536717,3dc93e90a5fffc4a8870cf8d2c59591d,18,12,23,28,43,40,23,27,20,0,0,234,
|
||||
Fitzner,Lillian,Medienwissenschaften,Kunstwissenschaften,B.A.,3,79831,5534049,895d019a8ada1744ade79ec0f61f3c1c,27.5,16,21,34,41,40,20,28,21,0,0,248.5,
|
||||
Funke,Nicole,Medienwissenschaften,English Studies,B.A.,3,79726,5537178,158abd68eff3Af7998afa75b08bc9a65,30,18,22,41.5,45,40,24,26,21,0,0,267.5,
|
||||
Gebel,Julia,,,,,,,8d0e1c984aa7481fe1ce44e3480fd081,31,18,26,41,46,38,25,23,21,0,0,269,
|
||||
Geworsky,Alexandra,,,,,,,397339b72e2a237b7a210d2f4baaef68,23,16,18,30,37,37,24,26,21,0,0,232,
|
||||
Giese,Zoe,Medienwissenschaften,English Studies,B.A.,3,79762,5539156,002e83be0271ebf504f4f58b45be4b56,31,18,23,32.5,45,38,24,28,21,0,0,260.5,
|
||||
Hansen,Jule,Medienwissenschaften,English Studies,B.A.,3,79727,5536791,bba69c41ee850ded5ea71157efe5d288,30,15,23,38,42,38,24,28,20,0,0,258,
|
||||
Hartkopp,Annelie,Medienwissenschaften,English Studies,B.A.,3,79763,4962494,d7e25782d71197d29f2d87b7be6803c8,22,18,23,34,22,9,0,28,11,0,0,167,
|
||||
Hesse,Hermine,Medienwissenschaften,Kunstwissenschaften,B.A.,3,79764,5533282,59a324b9f6417f8407ec39138cfa5810,27,12,22,18,25,36,4,12,21,0,0,177,
|
||||
Jordan,Mirja,Medienwissenschaften,English Studies,B.A.,3,79837,5536452,f9dcf7bc0e7adb10e59406f5ff7ffa66,21,14,19,30,33,38,25,28,20,0,0,228,
|
||||
Kitzinger,Julianne,Medienwissenschaften,Germanistik,B.A.,3,79844,5536522,46791f2ba3fcb9a7eee82616cf23ba1a,23,16,23,29,45,38,24,26,19,0,0,243,
|
||||
Liu,Wenyu,Elektromobilität,,B.A.,5,,5452211,3a69ddb89d6bdab557065d8fc681876f,17,18,22,30.5,44,18,12,0,0,0,0,161.5,
|
||||
Lock,Daniel,Medienwissenschaften,Kunstwissenschaften,B.A.,3,79832,5535020,222ebe3af7287479011e87e114b801cc,25.5,14,23,24,44,40,24,26,15,0,0,235.5,
|
||||
Matschulla,Tim,Medienwissenschaften,Germanistik,B.A.,5,78633,5415658,592dab7a9613cd61985725b3af4a0ddc,21.5,16,18,31,31,27,21,26,16,0,0,207.5,
|
||||
Milbrandt,Franka,,,,,,,717c2ded5848282e7e46e447723c65c5,30,18,20,43,45,39,23,25,21,0,0,264,
|
||||
Plöger,Linda,,,,,,,890fae02f2999a1d407ccafdc822e666,31,18,25,31,30,38,22,28,21,0,0,244,
|
||||
Reis,Adrian,Medienwissenschaften,Visuelle Kommunikation,B.A.,3,79840,5539135,13b364417d638cd95b115e40b3d07ce8,27,14,19.5,17,36,40,14,12,0,0,0,179.5,
|
||||
Rörig,Annemike,Medienwissenschaften,Germanistik,B.A.,3,79834,5534247,e4f786874461a353d1a9160e12e90d41,18,17,21,40,24,27,16,12,19,0,0,194,
|
||||
Sato,Kenji,Medienwissenschaften,English Studies,B.A.,1,80811,5635355,7f79b060fd89efbde4d8c800f03ccc43,25,17.5,23,39,44,33,19,28,21,0,0,249.5,
|
||||
Scheler,Helene,Medienwissenschaften,Kunstwissenschaften,B.A.,3,79794,5540057,03a954bc9e3c15a8dc79b2683de6cfd8,27,18,9,28,11,33,23,26,17,0,0,192,
|
||||
Schmitz,Fiona,Medienwissenschaften,English Studies,B.A.,3,79836,5545416,ed28f139682510181f2c98097162cd4d,30,16,19,38,43,27,23,28,20,0,0,244,
|
||||
Schmitz,Marie-Christine,,,,,,,6346e0b96e57f2fb5639874e6aa767a7,29,17,25,33,21,40,23,28,20,0,0,236,
|
||||
Seeger,Jenna,Medienwissenschaften,English Studies,B.A.,3,79931,5369131,1e364e36db3677e6c04a76b854c74b9b,24,16,21,32.5,44,40,24,25,11,0,0,237.5,
|
||||
Siever,Jette,Medienwissenschaften,English Studies,B.A.,3,79841,5536577,45c13e9435f2d9f531ce9a474f53d22d,27.5,18,23,33,45,38,21,14,21,0,0,240.5,
|
||||
Sinkemat,Josefine,Medienwissenschaften,English Studies,B.A.,5,78685,5313220,2fb883da49cc29a2b004ddb4c7bc411a,27,15,22,37,27,39,15,5,0,0,0,187,
|
||||
Stark,Agatha,Medienwissenschaften,Visuelle Kommunikation,B.A.,3,79803,5543511,83dc6d8430fd921bf1f4f0e6df7bad72,15,18,12,22,38,39,24.5,12,14,0,0,194.5,
|
||||
Sun,Ye,,,,6,,5384413,1852edad2f899b55e9c8680492682acb,31,18,20,40,45,35,24,0,21,0,0,234,
|
||||
Temouri,Arian,Medienwissenschaften,Kunstwissenschaften,B.A.,3,79843,5531981,6c7a48ff6f8320356fdd6f12c4e6c278,22,16,21,27.5,42,39,23.5,27,21,0,0,239,
|
||||
Trey,Alexander,,,,,,,8e3eb0f93bd1058db1eb38f1fc10d55c,30,18,25,42,43,40,21.5,19,21,0,0,259.5,
|
||||
Weber,Denis,,,,,,,61b3a94e4c79c9db1c0edeb011c07f60,31,16,22.5,27.5,26,34,24,28,21,0,0,230,
|
||||
Winkler,Elina,Medienwissenschaften,Germanistik,B.A.,3,79835,5537769,0491080f2bc88f0a0a3efc6e2b59de08,25,17,21,35,38,40,24,27,16,0,0,243,
|
||||
Zirkel,Fabian,Medienwissenschaften,Germanistik,B.A.,3,79722,5538430,e850a3fc85780779ce120bd3f8da8379,28,18,25,42,42,40,23,27,20,0,0,265,
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Documents/Arbeit/IFN/Stundenzettel 26/03_Arbeitsstunden_März.pdf
Normal file
BIN
Documents/Arbeit/IFN/Stundenzettel 26/03_Arbeitsstunden_März.pdf
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Documents/Uni/Bescheinigungen/Antrag_Verlängerung_PL_Eib.pdf
Normal file
BIN
Documents/Uni/Bescheinigungen/Antrag_Verlängerung_PL_Eib.pdf
Normal file
Binary file not shown.
BIN
Documents/Uni/Bescheinigungen/Eigenständigkeitserklärung.pdf
Normal file
BIN
Documents/Uni/Bescheinigungen/Eigenständigkeitserklärung.pdf
Normal file
Binary file not shown.
14834
Documents/Uni/Bescheinigungen/Medienrecht/Medienrecht_Hausarbeit.pdf
Normal file
14834
Documents/Uni/Bescheinigungen/Medienrecht/Medienrecht_Hausarbeit.pdf
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
Documents/Uni/Bescheinigungen/Medienrecht/medienrecht.pdf
Normal file
BIN
Documents/Uni/Bescheinigungen/Medienrecht/medienrecht.pdf
Normal file
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user