This commit is contained in:
2025-11-04 12:15:43 +01:00
parent 58ae53697e
commit 971a18fcc1
45 changed files with 5489 additions and 5915 deletions

View File

@@ -16,6 +16,8 @@
"styled-hr",
"small-text",
"obsidian",
"pdf-viewer"
"pdf-viewer",
"chartjs-catppuccin",
"table"
]
}

View File

@@ -20,11 +20,11 @@
"workbooks",
"excel",
"drawio-obsidian",
"notebook-navigator",
"featured-image",
"homepage",
"obsidian-columns",
"extended-graph",
"background-image",
"pdf-plus"
"pdf-plus",
"jupymd",
"obsidian-excalidraw-plugin"
]

20
.obsidian/graph.json vendored
View File

@@ -5,18 +5,18 @@
"showAttachments": true,
"hideUnresolved": false,
"showOrphans": true,
"collapse-color-groups": false,
"collapse-color-groups": true,
"colorGroups": [],
"collapse-display": false,
"showArrow": true,
"textFadeMultiplier": 0,
"nodeSizeMultiplier": 1.63125,
"lineSizeMultiplier": 3.67291666666667,
"textFadeMultiplier": 0.9,
"nodeSizeMultiplier": 0.7890625,
"lineSizeMultiplier": 0.610416666666667,
"collapse-forces": false,
"centerStrength": 0.40625,
"repelStrength": 9.89583333333333,
"linkStrength": 1,
"linkDistance": 373,
"scale": 0.11327439907466573,
"close": false
"centerStrength": 0.427083333333333,
"repelStrength": 9.47916666666667,
"linkStrength": 0.5,
"linkDistance": 94,
"scale": 0.06165877303407167,
"close": true
}

View File

@@ -7,10 +7,10 @@
"footerTemplate": "<div style=\"width: 100vw;font-size:10px;text-align:center;\"><span class=\"pageNumber\"></span> / <span class=\"totalPages\"></span></div>",
"printBackground": false,
"generateTaggedPDF": false,
"displayMetadata": false,
"displayMetadata": true,
"debug": false,
"isTimestamp": false,
"enabledCss": false,
"isTimestamp": true,
"enabledCss": true,
"concurrency": "5",
"prevConfig": {
"pageSize": "A4",
@@ -25,6 +25,6 @@
"marginRight": "10",
"displayHeader": false,
"displayFooter": false,
"cssSnippet": "0"
"cssSnippet": "/storage/Notes/.obsidian/snippets/table-exporter.css"
}
}

View File

@@ -85,20 +85,20 @@
"showAttachments": true,
"hideUnresolved": false,
"showOrphans": true,
"collapse-color-groups": false,
"collapse-color-groups": true,
"colorGroups": [],
"collapse-display": false,
"showArrow": true,
"textFadeMultiplier": 0,
"nodeSizeMultiplier": 1.63125,
"lineSizeMultiplier": 3.67291666666667,
"textFadeMultiplier": 0.9,
"nodeSizeMultiplier": 0.7890625,
"lineSizeMultiplier": 0.610416666666667,
"collapse-forces": false,
"centerStrength": 0.40625,
"repelStrength": 9.89583333333333,
"linkStrength": 1,
"linkDistance": 373,
"scale": 0.11327439907466573,
"close": false
"centerStrength": 0.427083333333333,
"repelStrength": 9.47916666666667,
"linkStrength": 0.5,
"linkDistance": 94,
"scale": 0.06165877303407167,
"close": true
},
"openInNewTab": true,
"canonicalizePropertiesWithDataview": true,

File diff suppressed because one or more lines are too long

View File

@@ -1,11 +0,0 @@
{
"id": "featured-image",
"name": "Featured Image",
"version": "1.2.1",
"minAppVersion": "1.8.0",
"description": "Automatically sets a featured image property in your notes based on the first image, YouTube link, or Auto Card Link image found in your document.",
"author": "Johan Sanneblad",
"authorUrl": "https://github.com/johansan",
"fundingUrl": "https://buymeacoffee.com/johansan",
"isDesktopOnly": false
}

View File

@@ -1,18 +0,0 @@
.featured-image-info {
background-color: var(--background-secondary);
border-radius: 5px;
padding: 10px;
margin: 10px 0;
}
.featured-image-info-text {
margin: 0;
color: var(--text-muted);
font-size: 0.9em;
}
.thumbnail-settings {
padding-left: 1em;
border-left: 2px solid var(--background-modifier-border);
margin-left: 1em;
}

7
.obsidian/plugins/jupymd/data.json vendored Normal file
View File

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

237
.obsidian/plugins/jupymd/main.js vendored Normal file

File diff suppressed because one or more lines are too long

10
.obsidian/plugins/jupymd/manifest.json vendored Normal file
View File

@@ -0,0 +1,10 @@
{
"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
}

91
.obsidian/plugins/jupymd/styles.css vendored Normal file
View File

@@ -0,0 +1,91 @@
.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

@@ -1,266 +0,0 @@
{
"startView": "files",
"showTooltips": false,
"showTooltipPath": true,
"homepage": null,
"mobileHomepage": null,
"useMobileHomepage": false,
"autoRevealActiveFile": true,
"autoRevealIgnoreRightSidebar": true,
"fileVisibility": "documents",
"excludedFolders": [],
"excludedFiles": [],
"dateFormat": "MMM d, yyyy",
"timeFormat": "h:mm a",
"autoSelectFirstFileOnFocusChange": false,
"navigationBanner": null,
"showShortcuts": true,
"showRecentNotes": true,
"recentNotesCount": 5,
"autoExpandFoldersTags": false,
"collapseBehavior": "all",
"smartCollapse": true,
"showIcons": true,
"colorIconOnly": false,
"showNoteCount": true,
"separateNoteCounts": true,
"navIndent": 16,
"navItemHeight": 28,
"navItemHeightScaleText": true,
"showHiddenItems": false,
"showRootFolder": true,
"inheritFolderColors": false,
"enableFolderNotes": false,
"folderNoteType": "markdown",
"folderNoteName": "",
"folderNoteProperties": [],
"hideFolderNoteInList": true,
"pinCreatedFolderNote": false,
"showTags": true,
"showAllTagsFolder": true,
"showUntagged": false,
"tagSortOrder": "alpha-asc",
"hiddenTags": [],
"defaultFolderSort": "modified-desc",
"listPaneTitle": "header",
"multiSelectModifier": "cmdCtrl",
"includeDescendantNotes": true,
"groupByDate": true,
"optimizeNoteHeight": true,
"showQuickActions": true,
"quickActionRevealInFolder": true,
"quickActionPinNote": true,
"quickActionOpenInNewTab": true,
"useFrontmatterMetadata": false,
"frontmatterIconField": "icon",
"frontmatterColorField": "color",
"frontmatterNameField": "",
"frontmatterCreatedField": "",
"frontmatterModifiedField": "",
"frontmatterDateFormat": "",
"saveMetadataToFrontmatter": false,
"iconizeFormat": false,
"fileNameRows": 1,
"showFileDate": true,
"showFileTags": true,
"showFileTagAncestors": true,
"colorFileTags": true,
"showFileTagsInSlimMode": false,
"showParentFolderNames": true,
"showFilePreview": true,
"skipHeadingsInPreview": true,
"skipCodeBlocksInPreview": true,
"previewProperties": [],
"previewRows": 2,
"showFeatureImage": true,
"featureImageProperties": [
"thumbnail",
"featureResized",
"feature"
],
"forceSquareFeatureImage": true,
"useEmbeddedImageFallback": true,
"externalIconProviders": {},
"searchProvider": "internal",
"keyboardShortcuts": {
"pane:move-up": [
{
"key": "ArrowUp",
"modifiers": []
}
],
"pane:move-down": [
{
"key": "ArrowDown",
"modifiers": []
}
],
"pane:page-up": [
{
"key": "PageUp",
"modifiers": []
}
],
"pane:page-down": [
{
"key": "PageDown",
"modifiers": []
}
],
"pane:home": [
{
"key": "Home",
"modifiers": []
}
],
"pane:end": [
{
"key": "End",
"modifiers": []
}
],
"navigation:collapse-or-parent": [
{
"key": "ArrowLeft",
"modifiers": []
}
],
"navigation:expand-or-focus-list": [
{
"key": "ArrowRight",
"modifiers": []
}
],
"navigation:focus-list": [
{
"key": "Tab",
"modifiers": []
}
],
"pane:delete-selected": [
{
"key": "Delete",
"modifiers": []
},
{
"key": "Backspace",
"modifiers": []
}
],
"list:focus-navigation": [
{
"key": "ArrowLeft",
"modifiers": []
},
{
"key": "Tab",
"modifiers": [
"Shift"
]
}
],
"list:focus-editor": [
{
"key": "ArrowRight",
"modifiers": []
},
{
"key": "Tab",
"modifiers": []
}
],
"list:select-all": [
{
"key": "A",
"modifiers": [
"Mod"
]
}
],
"list:extend-selection-up": [
{
"key": "ArrowUp",
"modifiers": [
"Shift"
]
}
],
"list:extend-selection-down": [
{
"key": "ArrowDown",
"modifiers": [
"Shift"
]
}
],
"list:range-to-start": [
{
"key": "Home",
"modifiers": [
"Shift"
]
}
],
"list:range-to-end": [
{
"key": "End",
"modifiers": [
"Shift"
]
}
],
"search:focus-list": [
{
"key": "Tab",
"modifiers": []
},
{
"key": "Enter",
"modifiers": []
}
],
"search:focus-navigation": [
{
"key": "Tab",
"modifiers": [
"Shift"
]
}
],
"search:close": [
{
"key": "Escape",
"modifiers": []
}
]
},
"shortcuts": [],
"checkForUpdatesOnStart": true,
"confirmBeforeDelete": true,
"searchActive": false,
"customVaultName": "",
"pinnedNotes": {},
"fileIcons": {},
"fileColors": {},
"folderIcons": {},
"folderColors": {},
"folderBackgroundColors": {},
"folderSortOverrides": {},
"folderAppearances": {},
"tagIcons": {},
"tagColors": {},
"tagBackgroundColors": {},
"tagSortOverrides": {},
"tagAppearances": {},
"recentColors": [],
"lastShownVersion": "",
"latestKnownRelease": "1.5.5",
"lastAnnouncedRelease": "",
"lastReleaseCheckAt": 1760962164187,
"rootFolderOrder": [],
"rootTagOrder": [],
"showTagsAboveFolders": false,
"showFavoriteTagsFolder": true,
"showUntaggedInFavorites": false,
"favoriteTags": []
}

File diff suppressed because one or more lines are too long

View File

@@ -1,11 +0,0 @@
{
"id": "notebook-navigator",
"name": "Notebook Navigator",
"version": "1.6.2",
"minAppVersion": "1.8.0",
"description": "Replace the default file explorer with a clean two-pane interface featuring folder tree, tag browsing, file previews, keyboard navigation, drag-and-drop, pinned notes, and customizable display options.",
"author": "Johan Sanneblad",
"authorUrl": "https://github.com/johansan",
"fundingUrl": "https://github.com/sponsors/johansan/",
"isDesktopOnly": false
}

File diff suppressed because it is too large Load Diff

View File

@@ -5,14 +5,12 @@
"rgba(255, 206, 86, 1)",
"rgba(75, 192, 192, 1)",
"rgba(153, 102, 255, 1)",
"rgba(255, 159, 64, 1)",
"#ffffff",
"#ffffff"
"rgba(255, 159, 64, 1)"
],
"contextMenu": true,
"imageSettings": {
"format": "image/png",
"quality": 1
},
"themeable": false
"themeable": true
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,12 @@
{
"id": "obsidian-excalidraw-plugin",
"name": "Excalidraw",
"version": "2.16.1",
"minAppVersion": "1.5.7",
"description": "An Obsidian plugin to edit and view Excalidraw drawings",
"author": "Zsolt Viczian",
"authorUrl": "https://excalidraw-obsidian.online",
"fundingUrl": "https://ko-fi.com/zsolt",
"helpUrl": "https://github.com/zsviczian/obsidian-excalidraw-plugin#readme",
"isDesktopOnly": false
}

File diff suppressed because one or more lines are too long

View File

@@ -21,5 +21,6 @@
"catppuccin-icon-styles@@ctp-icon-hide": false,
"catppuccin-pdf@@ctp-seamless-pdf": true,
"catppuccin-pdf@@ctp-pdf-darken": true,
"catppuccin-pdf@@ctp-pdf-blend": false
"catppuccin-pdf@@ctp-pdf-blend": false,
"pdf-plus@@pdf-plus-vim-hint-inverted": true
}

View File

@@ -0,0 +1,48 @@
:root {
/* Catppuccin Mocha — Rainbow Ordered */
--chart-color-1: #f38ba8; /* red */
--chart-color-2: #fab387; /* orange / peach */
--chart-color-3: #f9e2af; /* yellow */
--chart-color-4: #a6e3a1; /* green */
--chart-color-5: #94e2d5; /* teal / cyan */
--chart-color-6: #89b4fa; /* blue / sky */
--chart-color-7: #cba6f7; /* violet / mauve */
--chart-color-8: #f5c2e7; /* pink */
--chart-color-9: #f5e0dc; /* rosewater (soft highlight) */
/* Supporting colors */
--chart-text: #cdd6f4;
--chart-bg: #1e1e2e;
--chart-surface: #11111b;
/* RGBA transparent variants */
--chart-color-1-rgba-12: rgba(243,139,168,0.12);
--chart-color-2-rgba-12: rgba(250,179,135,0.12);
--chart-color-3-rgba-12: rgba(249,226,175,0.12);
--chart-color-4-rgba-12: rgba(166,227,161,0.12);
--chart-color-5-rgba-12: rgba(148,226,213,0.12);
--chart-color-6-rgba-12: rgba(137,180,250,0.12);
--chart-color-7-rgba-12: rgba(203,166,247,0.12);
--chart-color-8-rgba-12: rgba(245,194,231,0.12);
--chart-color-9-rgba-12: rgba(245,224,220,0.12);
--chart-color-1-rgba-30: rgba(243,139,168,0.30);
--chart-color-2-rgba-30: rgba(250,179,135,0.30);
--chart-color-3-rgba-30: rgba(249,226,175,0.30);
--chart-color-4-rgba-30: rgba(166,227,161,0.30);
--chart-color-5-rgba-30: rgba(148,226,213,0.30);
--chart-color-6-rgba-30: rgba(137,180,250,0.30);
--chart-color-7-rgba-30: rgba(203,166,247,0.30);
--chart-color-8-rgba-30: rgba(245,194,231,0.30);
--chart-color-9-rgba-30: rgba(245,224,220,0.30);
}
/* Optional styling */
.cm-chartjs-tooltip, .chartjs-tooltip, .cm-chartjs {
color: var(--chart-text) !important;
}
.cm-chartjs-canvas-wrapper, .chartjs-wrapper {
background: var(--chart-surface);
}

56
.obsidian/snippets/table.css vendored Normal file
View File

@@ -0,0 +1,56 @@
.markdown-preview-view table,
.markdown-source-view.mod-cm6 .cm-table-widget table {
border-collapse: collapse;
border-spacing: 0;
}
/* Header Styling */
.markdown-preview-view table thead tr,
.markdown-source-view.mod-cm6 .cm-table-widget thead tr {
background-color: #11111b;
}
.markdown-preview-view table thead th,
.markdown-source-view.mod-cm6 .cm-table-widget thead th {
color: #cdd6f4;
font-weight: 600;
padding: 1px;
border: 1px solid #313244;
}
/* Odd Row Background */
.markdown-preview-view table tbody tr:nth-child(odd),
.markdown-source-view.mod-cm6 .cm-table-widget tbody tr:nth-child(odd) {
background-color: #1e1e2e;
}
/* Even Row Background */
.markdown-preview-view table tbody tr:nth-child(even),
.markdown-source-view.mod-cm6 .cm-table-widget tbody tr:nth-child(even) {
background-color: #181825;
}
/* Table Cells */
.markdown-preview-view table td,
.markdown-source-view.mod-cm6 .cm-table-widget td {
color: #cdd6f4;
padding: 2px;
border: 1px solid #313244;
}
/* Hover Effect with Matching Cursor Color */
.markdown-preview-view table tbody tr:hover,
.markdown-source-view.mod-cm6 .cm-table-widget tbody tr:hover {
background-color: #b4befe;
color: #11111b;
transition: background-color 0.2s ease, color 0.2s ease;
caret-color: #11111b;
}
/* Ensure table cells also update their text and cursor color */
.markdown-preview-view table tbody tr:hover td,
.markdown-source-view.mod-cm6 .cm-table-widget tbody tr:hover td {
color: #11111b;
caret-color: #11111b;
}

View File

@@ -63,6 +63,8 @@ marker: Konzert, 52.39298355684949, 9.725243394195662, [[21.10.2025|Thornhill]]
marker: Vorlesung, 52.273438016792106, 10.526113295806729, [[Time Table|Vorlesung 1-13]]
marker: Konzert, 52.25700746599424, 10.51109269564754, [[31.10.2025|Halloween]]
marker: Konzert, 52.424156510022314, 10.782463364590525, [[15.11.2025|Knorkater]]
marker: Konzert, 52.3685367367407, 9.72037731697577, [[21.11.2025|TBK]]

View File

@@ -0,0 +1,21 @@
---
title: 20.03.2026 - Calendar
timestamp: 20.03.2026 - 20:15
reason:
tags:
- Calendar
- Termin
---
![logo](logo.png)
# 20.03.2026
>[!info] Termin
>**Ort**: Hamburg, Uebel & Geährlich
>
>**Begin**: 20h
# Tasks
- [ ] Trip Planen
Karten hat Sissi
---

View File

@@ -0,0 +1,23 @@
---
title: Ersatzprüfung - Helen Looney - Note
short_desc:
tags:
- Note
- Uni
- Vorlesung
- Work
timestamp: 30.10.2025 - 10:24
path:
public: true
update: true
editor: markdown
uuid: "1761816261355"
---
# Tasks
- [ ] Termin mit Jorswieck absprechen Woche 24-28.11
- [ ] Projekt Raussuchen
- [ ] Vorher absprechen 7.11/14.11?
---

View File

@@ -13,21 +13,24 @@ public: true
update: true
editor: markdown
uuid: "1761161623050"
feature: thumbnails/external/7101590b681bb0dcd2297796a1b24014.png
thumbnail: thumbnails/resized/0b81b2982df2e7c1e2d930993f1d29f5_86cf658e.webp
feature: thumbnails/external/89b30361e78c63dafa937dce92b1f550.svg
---
![](https://styles.redditmedia.com/t5_2qh0y/styles/bannerBackgroundImage_cd73kiu1502d1.png)
![ifn-logo](https://www.tu-braunschweig.de/fileadmin/Logos_Einrichtungen/Institute_FK5/logo_IFN.svg)
# Fragen
[Invote.de](https://invote.de/87823)
![[invote_qr_code.png|300]]
*Alle Angaben in Prozent(%)*
---
## 1. Sind alle eingeloggt?
- [ ] Funktioniert!
- [ ] Gib mir noch kurz Zeit..
| | Values n= |
| ---- | --------- |
| Ja | 0 |
| | Values n=34 |
| ---- | ----------- |
| Ja | 100 |
| Nein | 0 |
^table1
@@ -48,13 +51,13 @@ beginAtZero: true
- [ ] 4
- [ ] 5
| | Values n= |
| --- | --------- |
| 1 | 0 |
| 2 | 0 |
| 3 | 0 |
| 4 | 0 |
| 5 | 0 |
| | Values n=33 |
| --- | ----------- |
| 1 | 39 |
| 2 | 30 |
| 3 | 15 |
| 4 | 9 |
| 5 | 6 |
^table2
```chart
@@ -70,18 +73,19 @@ beginAtZero: true
- [ ] Bachelor
- [ ] Master
| | Values n= |
| -------- | --------- |
| Bachelor | 0 |
| Master | 0 |
| | Values n=34 |
| -------- | ----------- |
| Bachelor | 88 |
| Master | 12 |
^table3
```chart
type: bar
type: pie
id: table3
layout: rows
layout: coloumns
width: 80%
beginAtZero: true
labelColors: true
```
---
## 4. Ich studiere ...
@@ -92,22 +96,23 @@ beginAtZero: true
- [ ] Psychologie
- [ ] Was anderes...
| | Values n= |
| ------------------------------------ | --------- |
| Medienwissenschaften B.A. | 0 |
| | Values n=33 |
| ------------------------------------ | ----------- |
| Medienwissenschaften B.A. | 82 |
| Medienwissenschaften M.A. | 0 |
| Irgendwas mit Ingeneurwissenschaften | 0 |
| Irgendwas mit Naturwissenschaften | 0 |
| Irgendwas mit Ingeneurwissenschaften | 12 |
| Irgendwas mit Naturwissenschaften | 3 |
| Psychologie | 0 |
| Was anderes... | 0 |
| Was anderes... | 3 |
^table4
```chart
type: pie
id: table4
layout: rows
layout: coloumns
width: 80%
beginAtZero: true
labelColors: true
```
---
## 5. Ich studiere im ...
@@ -117,47 +122,51 @@ beginAtZero: true
- [ ] 7./8. Semester
- [ ] 9+ Semester
| | Values n= |
| --- | --------- |
| 1/2 | 0 |
| 3/4 | 0 |
| 5/6 | 0 |
| 7/8 | 0 |
| 9+ | 0 |
| | Values n=34 |
| --- | ----------- |
| 1/2 | 3 |
| 3/4 | 74 |
| 5/6 | 12 |
| 7/8 | 3 |
| 9+ | 9 |
^table5
```chart
type: pie
id: table5
layout: rows
layout: coloumns
width: 80%
beginAtZero: true
labelColors: true
```
---
## 6. Ich kenne bereits die Programmiersprache ...
- [ ] C
- [ ] Brainf\*\*k
- [ ] Javascript
- [ ] JavaScript
- [ ] Modula-2
- [ ] HTML (HyperText Markup Language)
- [ ] Delphi Pascal
- [ ] Keine...
| | Values n= |
| ------------- | --------- |
| C | 0 |
| | Values n=34 |
| ------------- | ----------- |
| C | 9 |
| Brainf\*\*k | 0 |
| JavaScript | 12 |
| Modula-2 | 0 |
| HTML | 0 |
| HTML | 15 |
| Delphi Pascal | 0 |
| Keine... | 0 |
| Keine... | 65 |
^table6
```chart
type: bar
type: pie
id: table6
layout: rows
layout: coloumns
width: 80%
beginAtZero: true
labelColors: true
```
---
## 7. Mit welcher Programmiersprache werden wir in dieser Vorlesung arbeiten?
@@ -167,21 +176,22 @@ beginAtZero: true
- [ ] Go
- [ ] Fortran 77
| | Values n= |
| ---------- | --------- |
| JavaScript | 0 |
| π-thon | 0 |
| | Values n=32 |
| ---------- | ----------- |
| JavaScript | 13 |
| π-thon | 84 |
| R | 0 |
| Go | 0 |
| Go | 3 |
| Fortran 77 | 0 |
^table7
```chart
type: bar
type: pie
id: table7
layout: rows
layout: coloumns
width: 80%
beginAtZero: true
labelColors: true
```
---
## 8. Wie heißt der/die Erfinder\*in von Python?
@@ -191,13 +201,13 @@ beginAtZero: true
- [ ] Alan Mathison Turing (10.9.2009 erst Entschuldigt, MI6, etc.)
- [ ] Katherine Johnson (Afro Amerikanische NASA Wissenschaftlerin, berechnete Flugbahnen)
| | Values n= |
| ----------------- | --------- |
| Guido van Rossum | 0 |
| Niklaus Wirth | 0 |
| Ada Lovelace | 0 |
| Alan Turing | 0 |
| Katherine Johnson | 0 |
| | Values n=33 |
| ----------------- | ----------- |
| Guido van Rossum | 24 |
| Niklaus Wirth | 36 |
| Ada Lovelace | 15 |
| Alan Turing | 15 |
| Katherine Johnson | 9 |
^table8
```chart
@@ -209,7 +219,7 @@ beginAtZero: true
```
---
## 9. Welchen Output gibt folgender Code?
*Summe von 1-100 = 5050*
```python
count = 0
for i in range(100):
@@ -223,25 +233,26 @@ print(count)
- [ ] 10.000
- [ ] 1, 1, 2, 3, 5, 8, 13, 21, ...
| | Values n= |
| ---------------------------- | --------- |
| 7 | 0 |
| 550 | 0 |
| 5.050 | 0 |
| 10.000 | 0 |
| 1, 1, 2, 3, 5, 8, 13, 21, .. | 0 |
| | Values n=34 |
| ---------------------------- | ----------- |
| 7 | 3 |
| 550 | 3 |
| 5.050 | 15 |
| 10.000 | 18 |
| 1, 1, 2, 3, 5, 8, 13, 21, .. | 62 |
^table9
```chart
type: bar
type: pie
id: table9
layout: rows
layout: coloumns
width: 80%
beginAtZero: true
labelColors: true
```
---
## 10. Welchen Output gibt folgender Code?
*Mein Fehler hab die Antworten nicht richtig geupdated*
```python
message = "π-thon macht Spaß"
print(message[0:6])
@@ -271,7 +282,7 @@ beginAtZero: true
```
---
## 11. Welchen Output gibt folgender Code?
*List Comprehension der quadrierten Zahlen*
```python
print([n*n for n in range(1,6)])
```
@@ -280,11 +291,11 @@ print([n*n for n in range(1,6)])
- [ ] [2,4,8,16,32]
- [x] [1,4,9,16,25]
| | Values n= |
| ------------- | --------- |
| [1,2,3,4,5] | 0 |
| [2,4,8,16,32] | 0 |
| [1,4,9,16,25] | 0 |
| | Values n=32 |
| ------------- | ----------- |
| [1,2,3,4,5] | 31 |
| [2,4,8,16,32] | 34 |
| [1,4,9,16,25] | 34 |
^table11
```chart
@@ -296,7 +307,7 @@ beginAtZero: true
```
---
## 12. Welchen Output gibt folgender Code?
**Technisch gesehen ist hier alles richtig**
```python
[] + {}
```
@@ -305,11 +316,11 @@ beginAtZero: true
- [ ] Das ist Javascript...
- [x] TypeError: can only concatenate list (not "dict") to list
| | Values n= |
| --------------------- | --------- |
| [object Object] | 0 |
| Das ist JavaScript... | 0 |
| TypeError | 0 |
| | Values n=33 |
| --------------------- | ----------- |
| [object Object] | 21 |
| Das ist JavaScript... | 21 |
| TypeError | 58 |
^table12
```chart
@@ -345,18 +356,19 @@ print(a_calculation(30)**-1)
- [ ] 1/e
- [x] π
| | Values n= |
| --- | --------- |
| 1/π | 0 |
| 1/e | 0 |
| π | 0 |
| | Values n=33 |
| --- | ----------- |
| 1/π | 30 |
| 1/e | 27 |
| π | 42 |
^table13
```chart
type: bar
type: pie
id: table13
layout: rows
layout: coloumns
width: 80%
beginAtZero: true
labelColors: true
```
---

View File

@@ -0,0 +1,87 @@
---
title: Teilnehmer Liste - Note
short_desc: Teilnehmer Liste mit allen Informationen
tags:
- Note
- Vorlesung
- Uni
- Work
timestamp: 28.10.2025 - 11:49
path:
public: true
update: true
editor: markdown
uuid: "1761648544790"
---
## Liste 1
| Vorname | Nachname | Studium | Semester | HBK Mat-Nr. | TU Mat-Nr. |
| ------- | -------- | ------- | -------- | ----------- | ---------- |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
## Liste 2
| Vorname | Nachname | Studium | Semester | HBK Mat-Nr. | TU Mat-Nr. |
| ------- | -------- | ------- | -------- | ----------- | ---------- |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
## Liste 3
| Vorname | Nachname | Studium | Semester | HBK Mat-Nr. | TU Mat-Nr. |
| ------- | -------- | ------- | -------- | ----------- | ---------- |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |

View File

@@ -0,0 +1,55 @@
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@400;700&display=swap');
@page {
size: A4;
margin: 1.5cm;
/* Add page numbers at bottom */
@bottom-right {
content: "Page " counter(page);
font-family: "Noto Sans Mono", monospace;
font-size: 10pt;
}
}
body {
font-family: "Helvetica", Arial, sans-serif;
color: #000;
background: #fff;
margin: 0;
padding: 0;
}
h1,h2 {
text-align: center;
margin: 0 0 0.5cm 0;
font-size: 24pt;
page-break-before: always;
}
h2 {
font-size: 18pt;
}
h1,h2:first-of-type {
page-break-before: avoid;
}
/* Table height: page height minus top/bottom margins and header estimate */
table {
width: 100%;
border-collapse: collapse;
table-layout: fixed;
border: 1pt solid #000;
/* A4 height 29.7cm - margins 3cm - header 2cm ≈ 24.7cm */
height: 22.7cm;
}
th, td {
border: 0.8pt solid #000;
text-align: center;
vertical-align: middle;
padding: 0;
}

View File

@@ -3,6 +3,9 @@ title: Time Table - Note
short_desc:
tags:
- Note
- Vorlesung
- Uni
- Work
timestamp: 24.09.2025 - 11:51
path:
public: true
@@ -38,3 +41,7 @@ feature: thumbnails/external/89b30361e78c63dafa937dce92b1f550.svg
| 20.02.2026 | Prüfung (Termin unter vorbehalt) |
---
Ideen:
- Stock Market Simulation (Animal Crossing)
- Gini Index

View File

@@ -12,6 +12,22 @@ thumbnail: thumbnails/resized/e3f80df020cca3c2d7e2ffdc7d968e79_86cf658e.webp
# 07.11.2025
# Tasks
- [ ] Task1
- [ ] Ablauf planen
- [ ] Beispiele planen
## Ablauf
## Beispiele
```python
import sys
def fn():
sys.stdout.flush()
return sys.stdin.readline()
num = {0: fn, 1: fn}[int(bool(sys.stdout.write("Enter a number: ")))]()
for print in {sys.stdout.write}:
print(f"Your number is: {num}\n")
```
---

View File

@@ -19,9 +19,7 @@ thumbnail: thumbnails/resized/e3f80df020cca3c2d7e2ffdc7d968e79_86cf658e.webp
- [ ] Time Table
![[Einführung25_26.pdf]]
![[1. Organisation.pdf]]
![[1.Organisation.pdf]]
![[Fragen]]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB