Compare commits

...

5 Commits

Author SHA1 Message Date
2b367d7ec1 vault backup: 2026-08-03 09:02:51 2026-08-03 09:02:51 +02:00
2b94353934 Merge remote-tracking branch 'origin/main' 2026-08-03 08:59:34 +02:00
2f63287402 vault backup: 2026-08-03 08:57:51 2026-08-03 08:57:51 +02:00
875d792449 vault backup: 2026-08-03 08:52:51 2026-08-03 08:52:51 +02:00
ac21ccf773 vault backup: 2026-08-03 08:47:50 2026-08-03 08:47:50 +02:00
4 changed files with 135 additions and 8 deletions

View File

@@ -53,6 +53,6 @@
"repelStrength": 10, "repelStrength": 10,
"linkStrength": 1, "linkStrength": 1,
"linkDistance": 250, "linkDistance": 250,
"scale": 0.38825798432724357, "scale": 0.3484678585258287,
"close": true "close": true
} }

View File

@@ -17,7 +17,7 @@
"showStatusBar": true, "showStatusBar": true,
"updateSubmodules": false, "updateSubmodules": false,
"syncMethod": "merge", "syncMethod": "merge",
"mergeStrategy": "none", "mergeStrategy": "theirs",
"customMessageOnAutoBackup": false, "customMessageOnAutoBackup": false,
"autoBackupAfterFileChange": false, "autoBackupAfterFileChange": false,
"treeStructure": false, "treeStructure": false,

View File

@@ -13,12 +13,12 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "10. Grundlagen technischer Systeme/Mathematische Grundlagen und Algebra/test note.md", "file": "100.Orga/Showroom.md",
"mode": "source", "mode": "source",
"source": false "source": false
}, },
"icon": "lucide-file", "icon": "lucide-file",
"title": "test note" "title": "Showroom"
} }
} }
] ]
@@ -92,7 +92,7 @@
{ {
"id": "54ad066494d65335", "id": "54ad066494d65335",
"type": "tabs", "type": "tabs",
"dimension": 68.31896551724138, "dimension": 58.24652777777778,
"children": [ "children": [
{ {
"id": "9548d7808822157b", "id": "9548d7808822157b",
@@ -181,7 +181,7 @@
{ {
"id": "f73aeaffd0c79c9a", "id": "f73aeaffd0c79c9a",
"type": "tabs", "type": "tabs",
"dimension": 31.68103448275862, "dimension": 41.75347222222222,
"children": [ "children": [
{ {
"id": "e41f95e34bc6d97a", "id": "e41f95e34bc6d97a",
@@ -219,7 +219,7 @@
} }
} }
], ],
"currentTab": 2 "currentTab": 1
} }
], ],
"direction": "horizontal", "direction": "horizontal",
@@ -274,7 +274,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/Überblick Einführung in die Elektrotechnik und Elektronik mit Digitalschaltungen.md",
"10. Grundlagen technischer Systeme/Einführung in die Elektrotechnik und Elektronik mit Digitalschaltungen", "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/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/Coding",
"20. Informatische Lösungen gestalten/Machine Learning und Künstliche Intelligenz" "20. Informatische Lösungen gestalten/Machine Learning und Künstliche Intelligenz"
] ]

128
100.Orga/Showroom.md Normal file
View File

@@ -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 <br> 8:45-10:30 | a | a | B | E | d |
| 3 + 4 <br> 10:45-12:30 | e | e | B | E | e |
| Pause | | | | | |
| 5 + 6 <br> 13:30-15:15 | B | E | e | e | e |
| 7 + 8 <br> 15:30-17:15 | B | E | e | d | e |
| 9 + 10 <br> 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]]