This commit is contained in:
2025-11-06 20:25:47 +01:00
parent 70dc9d6b73
commit 6e1a01665f
36 changed files with 169 additions and 348 deletions

30
.obsidian/community-plugins.json vendored Normal file
View File

@@ -0,0 +1,30 @@
[
"obsidian-advanced-slides",
"table-editor-obsidian",
"background-image",
"better-export-pdf",
"calendar",
"obsidian-charts",
"obsidian-columns",
"dataview",
"drawio-obsidian",
"obsidian-emoji-toolbar",
"obsidian-excalidraw-plugin",
"excel",
"extended-graph",
"obsidian-git",
"homepage",
"obsidian-icon-folder",
"obsidian-kanban",
"obsidian-leaflet-plugin",
"pdf-plus",
"periodic-notes",
"obsidian-reminder-plugin",
"rich-foot",
"solve",
"obsidian-style-settings",
"terminal",
"obsidian-plugin-todo",
"unicode-search",
"workbooks"
]

View File

@@ -17,6 +17,6 @@
"repelStrength": 9.47916666666667,
"linkStrength": 0.5,
"linkDistance": 94,
"scale": 0.06165877303407167,
"scale": 0.061658773034071676,
"close": true
}

View File

@@ -97,7 +97,7 @@
"repelStrength": 9.47916666666667,
"linkStrength": 0.5,
"linkDistance": 94,
"scale": 0.06165877303407167,
"scale": 0.061658773034071676,
"close": true
},
"openInNewTab": true,

View File

@@ -1,7 +0,0 @@
{
"autoSync": true,
"bidirectionalSync": false,
"pythonInterpreter": "python3",
"notebookEditorCommand": "jupyter-lab",
"enableCodeBlocks": true
}

File diff suppressed because one or more lines are too long

View File

@@ -1,10 +0,0 @@
{
"id": "jupymd",
"name": "JupyMD",
"version": "1.4.5",
"minAppVersion": "1.8.4",
"description": "Use Jupyter notebooks in Obsidian.",
"author": "Deniz Terzioglu",
"authorUrl": "https://d-eniz.github.io/",
"isDesktopOnly": true
}

View File

@@ -1,91 +0,0 @@
.edit-block-button {
display: none !important;
}
.code-container {
border-radius: 6px;
overflow: hidden;
background-color: var(--background-primary);
border: 1px solid var(--background-modifier-border-hover);
}
.code-top-bar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--background-primary);
padding: 0.15em 1em;
}
.code-buttons {
display: flex;
gap: 0.5em;
}
.code-lang-label {
font-family: 'Inter', sans-serif;
color: var(--text-muted);
font-size: 0.7em;
padding: 0.5em;
}
.code-output {
font-size: 0.9em;
font-family: var(--font-monospace), monospace !important;
background-color: var(--background-primary) !important;
border: none !important;
}
.code-output img {
max-height: 500px !important;
margin: 0.5em 0;
border: none;
border-radius: 3px;
background-color: var(--background-primary) !important;
}
.icon-button {
box-shadow: none !important;
border: none !important;
outline: none !important;
background-color: transparent !important;
padding: 0 !important;
display: flex;
align-items: center;
justify-content: center;
}
.icon {
width: 15px;
height: 15px;
}
.grey-icon {
transition: color 0.2s;
color: var(--text-muted);
}
.grey-icon:hover {
cursor: pointer;
transition: color 0.2s;
color: var(--text-normal);
}
.code-container .cm-scroller {
padding: 1em;
background-color: var(--background-primary);
overflow: auto;
font-family: var(--font-monospace), monospace !important;
}
.code-container .cm-editor {
background-color: inherit;
font-family: var(--font-monospace), monospace;
font-size: 0.9em;
border: none;
}
.code-container .cm-content {
border: none;
box-shadow: none;
}

View File

@@ -18,6 +18,7 @@ uuid: "1761816261355"
- [ ] Projekt Raussuchen
- [ ] Vorher absprechen 7.11/14.11?
Montag 24.11 10h Jorsewieck Büro
---

View File

@@ -16,6 +16,78 @@ thumbnail: thumbnails/resized/e3f80df020cca3c2d7e2ffdc7d968e79_86cf658e.webp
- [ ] Beispiele planen
## Ablauf
- Comments
```python
# This is a Comment
"""This is a Docstring"""
'''This is also a Docstring'''
```
- Variablen
```python
var = 5 # a Variable which holds the Number 5
```
- Print
- String
- f-String
```python
'Single Quote String'
"Double Quote String"
txt = 'String'
f'This is a format-{txt}'
f"This is a format-{txt}"
```
- Datentypen
- Bool
- Int
- Float
```python
flag = True | False
num = 1 | -1
price = 3.141 | -inf
```
- Rechenoperationen
- Addition
- Subtraktion
- Multiplication
- Exponentiation
- Division
- Ganzzahldivision
- Ringarithmetik
```python
5 + 4 = 9
5.0 + 4 = 9.0
0.25 - 1 = -0.75
2*2 = 4
2**24 = 16.777.216
10 / 3 = 3.33
10 % 3 = 1
10 // 3 = 3
```
- If/Else
```python
if 4 < 3:
print(True)
elif 5 < 4:
print("Hello")
else:
num = 7
```
- For/While - Loop
```python
for i in range(0,10,2):
print(i)
i = 0
while i < 10:
print(i)
i += 2
```
- assert
```python
assert num > 3 "Num must be greater than 3"
```
## Beispiele
```python

View File

@@ -10,7 +10,7 @@ thumbnail: thumbnails/resized/e3f80df020cca3c2d7e2ffdc7d968e79_86cf658e.webp
---
![logo](logo.png)
# 14.11.2025
https://theskylive.com/voyager1-info
# Tasks
- [ ] Task1

View File

@@ -0,0 +1,63 @@
---
title: Fälle - Note
short_desc: Fälle zum Vorbereitung auf Medienrecht Sitzung 3
tags:
- Note
- Vorlesung
- Semester
- Uni
timestamp: 06.11.2025 - 19:38
path:
public: true
update: true
editor: markdown
uuid: "1762454299340"
---
![[Fälle_Stud.IP._Präs_4_1_Fälle_VL_MR_WS_25_26_Theissen.pdf]]
![[VL_Medienrecht_Handout_1_Theissen.pdf#page=2]]
## Fall 1
Welche Medienrechte möchte die Antragstellerin durchsetzen?
:LiArrowRight: Unterlassung
Können diese Ansprüche Erfolg haben?
Contra:
- Person des öffentlichen Lebens
- Öffentliches Interesse anderer Geschlechtspartner zu informieren und für die Zukunft vorzubereiten
Pro:
- Eingriff in die Intimsphäre
- Form der Berichterstattung ist irreführend (Aids kann man nicht verbreiten)
**Side Note**:
Domain [krasse-news.de](https://ts.domainname.de/krasse-news.de) steht zum Verkauf
## Fall 2
Welche Medienrechte möchte die Antragstellerin durchsetzen?
:LiArrowRight: Gegendarstellung, weil sie nicht im Skiurlaub war
:LiArrowRight: Berichtigung, Ja wenn sie beweisen kann das genanntes Bildniss nicht das erwartete ist
:LiArrowRight: Unterlassung, nein es besteht öffentliches Interesse
Können diese Ansprüche Erfolg haben?
**Berichtigung**:
Nur wenn Antragstellerin beweisen kann das das Foto aus anderem Skiurlaub ist. Angenommen es ist wahr dann hat sie einen Anspruch.
**Unterlassung**:
- Familie des öffentlichen Lebens
- Kein Eingriff in die Intimsphäre nur Privatsphäre
- Krankheit des Fürsten fällt unter öffentliches Interesse
## Fall 3
Wer nahm die Fotos auf?
Welche Medienrechte möchte die Antragstellerin durchsetzen?
:LiArrowRight: Unterlassung, bzgl. Aufnahmen über ihre Shoppingtätigkeit nach der Wahl
:LiArrowRight: Unterlassung, bzgl Verhalten
Können diese Ansprüche Erfolg haben?
**Fotos**: nein da berechtigtest öffentliches Interesse besteht
**Verhalten**: nein Öffentliches & Zeitgeschichtliches Interesse -> überwiegt Privatsphäre, weil Sie sich selbst in die Öffentlichkeit gestellt hat
---