From 2f63287402f99691ee7d9dbac9c7251ecf955d44 Mon Sep 17 00:00:00 2001 From: tobias Date: Mon, 3 Aug 2026 08:57:51 +0200 Subject: [PATCH] vault backup: 2026-08-03 08:57:51 --- .obsidian/graph.json | 2 +- .obsidian/workspace.json | 16 ++--- 100.Orga/Showroom.md | 128 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 137 insertions(+), 9 deletions(-) create mode 100644 100.Orga/Showroom.md diff --git a/.obsidian/graph.json b/.obsidian/graph.json index 8032053..8fe75b6 100644 --- a/.obsidian/graph.json +++ b/.obsidian/graph.json @@ -53,6 +53,6 @@ "repelStrength": 10, "linkStrength": 1, "linkDistance": 250, - "scale": 0.38825798432724357, + "scale": 0.3484678585258287, "close": true } \ No newline at end of file diff --git a/.obsidian/workspace.json b/.obsidian/workspace.json index e7ca35e..0d329b9 100644 --- a/.obsidian/workspace.json +++ b/.obsidian/workspace.json @@ -13,12 +13,12 @@ "state": { "type": "markdown", "state": { - "file": "10. Grundlagen technischer Systeme/Mathematische Grundlagen und Algebra/test note.md", + "file": "100.Orga/Showroom.md", "mode": "source", "source": false }, "icon": "lucide-file", - "title": "test note" + "title": "Showroom" } } ] @@ -92,7 +92,7 @@ { "id": "54ad066494d65335", "type": "tabs", - "dimension": 68.31896551724138, + "dimension": 58.24652777777778, "children": [ { "id": "9548d7808822157b", @@ -181,7 +181,7 @@ { "id": "f73aeaffd0c79c9a", "type": "tabs", - "dimension": 31.68103448275862, + "dimension": 41.75347222222222, "children": [ { "id": "e41f95e34bc6d97a", @@ -219,7 +219,7 @@ } } ], - "currentTab": 2 + "currentTab": 1 } ], "direction": "horizontal", @@ -239,13 +239,14 @@ "copilot:Open Copilot Chat": false } }, - "active": "9548d7808822157b", + "active": "42ae838cdd906d75", "lastOpenFiles": [ + "100.Orga/Studienfortschritt.md", + "100.Orga/Showroom.md", "10. Grundlagen technischer Systeme/Mathematische Grundlagen und Algebra/test note.md", "copilot/copilot-conversations/Gauss_Algorithm_Explanation_Breakdown@20260731_173834.md", "copilot/memory/Recent Conversations.md", "copilot/memory", - "100.Orga/Studienfortschritt.md", "copilot/copilot-conversations/ECTS_Count_in_Table@20260731_173555.md", "copilot/copilot-conversations", "copilot/copilot-custom-prompts/Clip Web Page.md", @@ -274,7 +275,6 @@ "10. Grundlagen technischer Systeme/Einführung in die Elektrotechnik und Elektronik mit Digitalschaltungen/Überblick Einführung in die Elektrotechnik und Elektronik mit Digitalschaltungen.md", "10. Grundlagen technischer Systeme/Einführung in die Elektrotechnik und Elektronik mit Digitalschaltungen", "20. Informatische Lösungen gestalten/Coding/Überblick Coding.md", - "20. Informatische Lösungen gestalten/Machine Learning und Künstliche Intelligenz/Überblick Machine Learning und Künstliche Intelligenz.md", "20. Informatische Lösungen gestalten/Coding", "20. Informatische Lösungen gestalten/Machine Learning und Künstliche Intelligenz" ] diff --git a/100.Orga/Showroom.md b/100.Orga/Showroom.md new file mode 100644 index 0000000..197cb81 --- /dev/null +++ b/100.Orga/Showroom.md @@ -0,0 +1,128 @@ +--- +banner: "![[showroom.jpg]]" +banner_icon: 👀 +banner_y: 0.5 +cssclass: banner-bug +based on: v.1.2 +--- + +#firstTag #secondTag #thirdTag +# 1 Headings Level 1 +## 1.1 Headings Level 2 +### 1.1.1 Headings Level 3 +#### 1.1.1.1 Headings Level 4 +##### 1.1.1.1.1 Headings Level 5 + +To add or remove the numbers in the headings, open the Command palette (`Ctrl + P`) and enter `Number all headings in document` + +# 2 Text +See here: [[2.Text formatting]] + +# 3 Math +$3x + 4y = 9$ + +# 4 Media +## 4.1 Get free banners +Get free images for the banner here: https://unsplash.com/ + +## 4.2 Simple image +![[folders.jpg|700]] + +# 5 Admonition +```ad-note +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. +``` + +Find more here: [[5.Admonition]] + +# 6 Tables + +| | Monday | Tuesday | Wednesday | Thursday | Friday | +| ----------------------- | ------ | ------- | --------- | -------- | ------ | +| 1 + 2
8:45-10:30 | a | a | B | E | d | +| 3 + 4
10:45-12:30 | e | e | B | E | e | +| Pause | | | | | | +| 5 + 6
13:30-15:15 | B | E | e | e | e | +| 7 + 8
15:30-17:15 | B | E | e | d | e | +| 9 + 10
17:30-19:15 | E | d | e | B | | + +# 7 Programming +## 7.1 Code +```python +def fib(n): + """ Print a Fibonacci series up to n """ + result = [] + a, b = 0, 1 + + while a < n: + result.append(a) + a, b = b, a+b + + return result + +# Function call with parameter, print return value +print(fib(2000)) +``` + +More Examples are here: [[7.1.Code]] + +## 7.2 Kanban Board +👉 [[7.2.Kanban Board Example]] + +## 7.3 UML +```plantuml +Bob -> Alice : hello +Alice -> Wonderland: hello +Wonderland -> next: hello +next -> Last: hello +Last -> next: hello +next -> Wonderland : hello +Wonderland -> Alice : hello +Alice -> Bob: hello +``` + +# 8 Dataview +- GitHub Page: https://github.com/blacksmithgu/obsidian-dataview +- Examples are here: [[8.Dataview]] + +# 9 Templates +- [[3D Print Other Designs]] +- [[3D Print Own Design]] +- [[Banner Template]] +- [[Daily Template]] +- [[Project Template]] +- [[Song Template]] + +# 10 Charts +👉 [[10.Charts]] + +| | Test1 | Test2 | Test3 | +| ----- | ----- | ----- | ----- | +| Data1 | 1 | 2 | 3.33 | +| Data2 | 3 | 2 | 1 | +| Data3 | 6.7 | 4 | 2 | +^table + +```chart +type: bar +id: table +layout: rows +width: 80% +beginAtZero: true +``` + +# 11 Habit Tracker + + +# Tabs +``` +G|----------------|----------------|----------------|----------------| +D|----------------|----------------|----------------|----------------| +A|----------------|----------------|----------------|5-----------5-6-| +E|0---------------|3---------------|5---------------|----------------| x2 + 1 + 2 + 3 + 4 + 1 + 2 + 3 + 4 + 1 + 2 + 3 + 4 + 1 + 2 + 3 + 4 + +``` + + +# Latest Change-Log +![[Version Log#v.1.2 - 08.02.2023]] \ No newline at end of file