Added
This commit is contained in:
2
.obsidian/appearance.json
vendored
2
.obsidian/appearance.json
vendored
@@ -6,7 +6,7 @@
|
||||
"accentColor": "",
|
||||
"monospaceFontFamily": "Source Code Pro",
|
||||
"baseFontSizeAction": true,
|
||||
"baseFontSize": 18,
|
||||
"baseFontSize": 16,
|
||||
"enabledCssSnippets": [
|
||||
"obsdian",
|
||||
"wide-dashboard",
|
||||
|
||||
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/LesungsFolien.pdf
Normal file
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/LesungsFolien.pdf
Normal file
Binary file not shown.
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/LesungsFolien.pptx
Normal file
BIN
Documents/Arbeit/IFN/Programmieren WiSe 25 26/LesungsFolien.pptx
Normal file
Binary file not shown.
@@ -12,6 +12,6 @@ thumbnail: thumbnails/resized/e3f80df020cca3c2d7e2ffdc7d968e79_86cf658e.webp
|
||||
# 14.11.2025
|
||||
https://theskylive.com/voyager1-info
|
||||
# Tasks
|
||||
- [ ] Ki? Helene Scheler, Daniel Lock,
|
||||
- [ ] Ki? Helene Scheler, Daniel Lock, Hermine Hesse, Jenna Seeger
|
||||
|
||||
---
|
||||
|
||||
@@ -18,6 +18,7 @@ Kitzinger,Julianne,Medienwissenschaften,Germanistik,B.A.,3,79844,5536522,46791f2
|
||||
Liu,Wenyu,,,,,,,3a69ddb89d6bdab557065d8fc681876f,17,0,0,0,0,0,0,0,0,0,0
|
||||
Lock,Daniel,Medienwissenschaften,Kunstwissenschaften,B.A.,,79832,5535020,222ebe3af7287479011e87e114b801cc,25.5,0,0,0,0,0,0,0,0,0,0
|
||||
Matschulla,Tim,Medienwissenschaften,Germanistik,B.A.,5,78633,5415658,592dab7a9613cd61985725b3af4a0ddc,21.5,0,0,0,0,0,0,0,0,0,0
|
||||
Mirghazanfari,Seyedhamid,,,,,,,46b0bcaa7c9f48c797c4bcc792370c70,,,,,,,,,,,
|
||||
Pape,Julius Tim,Medienwissenschaften,Kunstwissenschaften,B.A.,1,78743,5416655,f1690803cdd9793b3e1b76d7aeba611a,0,0,0,0,0,0,0,0,0,0,0
|
||||
Plöger,Linda,,,,,,,890fae02f2999a1d407ccafdc822e666,31,0,0,0,0,0,0,0,0,0,0
|
||||
Reis,Adrian,Medienwissenschaften,Visuelle Kommunikation,B.A.,3,79840,5539135,13b364417d638cd95b115e40b3d07ce8,27,0,0,0,0,0,0,0,0,0,0
|
||||
|
||||
|
Binary file not shown.
18
Untitled.md
Normal file
18
Untitled.md
Normal file
@@ -0,0 +1,18 @@
|
||||
```python
|
||||
def fubar(n: int):
|
||||
if isinstance(n, float) or n < 1:
|
||||
return False
|
||||
|
||||
count = 1
|
||||
while count <= n:
|
||||
msg = count
|
||||
if count % 3 == 0:
|
||||
msg = "Foo"
|
||||
if count % 5 == 0:
|
||||
msg = "Bar"
|
||||
if count % 15 == 0:
|
||||
msg = "FooBar"
|
||||
|
||||
count += 1
|
||||
print(msg, end=', ')
|
||||
```
|
||||
Reference in New Issue
Block a user