Init
This commit is contained in:
commit
f242d93821
17 changed files with 21199 additions and 0 deletions
3
.obsidian/app.json
vendored
Normal file
3
.obsidian/app.json
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"alwaysUpdateLinks": true
|
||||
}
|
1
.obsidian/appearance.json
vendored
Normal file
1
.obsidian/appearance.json
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
{}
|
30
.obsidian/core-plugins-migration.json
vendored
Normal file
30
.obsidian/core-plugins-migration.json
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"file-explorer": true,
|
||||
"global-search": true,
|
||||
"switcher": true,
|
||||
"graph": true,
|
||||
"backlink": true,
|
||||
"canvas": true,
|
||||
"outgoing-link": true,
|
||||
"tag-pane": true,
|
||||
"properties": false,
|
||||
"page-preview": true,
|
||||
"daily-notes": true,
|
||||
"templates": true,
|
||||
"note-composer": true,
|
||||
"command-palette": true,
|
||||
"slash-command": true,
|
||||
"editor-status": true,
|
||||
"bookmarks": true,
|
||||
"markdown-importer": false,
|
||||
"zk-prefixer": false,
|
||||
"random-note": false,
|
||||
"outline": true,
|
||||
"word-count": true,
|
||||
"slides": true,
|
||||
"audio-recorder": false,
|
||||
"workspaces": false,
|
||||
"file-recovery": true,
|
||||
"publish": false,
|
||||
"sync": false
|
||||
}
|
22
.obsidian/core-plugins.json
vendored
Normal file
22
.obsidian/core-plugins.json
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
[
|
||||
"file-explorer",
|
||||
"global-search",
|
||||
"switcher",
|
||||
"graph",
|
||||
"backlink",
|
||||
"canvas",
|
||||
"outgoing-link",
|
||||
"tag-pane",
|
||||
"page-preview",
|
||||
"daily-notes",
|
||||
"templates",
|
||||
"note-composer",
|
||||
"command-palette",
|
||||
"slash-command",
|
||||
"editor-status",
|
||||
"bookmarks",
|
||||
"outline",
|
||||
"word-count",
|
||||
"slides",
|
||||
"file-recovery"
|
||||
]
|
22
.obsidian/graph.json
vendored
Normal file
22
.obsidian/graph.json
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"collapse-filter": true,
|
||||
"search": "",
|
||||
"showTags": false,
|
||||
"showAttachments": false,
|
||||
"hideUnresolved": false,
|
||||
"showOrphans": true,
|
||||
"collapse-color-groups": true,
|
||||
"colorGroups": [],
|
||||
"collapse-display": true,
|
||||
"showArrow": false,
|
||||
"textFadeMultiplier": 0,
|
||||
"nodeSizeMultiplier": 1,
|
||||
"lineSizeMultiplier": 1,
|
||||
"collapse-forces": true,
|
||||
"centerStrength": 0.518713248970312,
|
||||
"repelStrength": 10,
|
||||
"linkStrength": 1,
|
||||
"linkDistance": 250,
|
||||
"scale": 1,
|
||||
"close": true
|
||||
}
|
20723
.obsidian/plugins/dataview/main.js
vendored
Normal file
20723
.obsidian/plugins/dataview/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/dataview/manifest.json
vendored
Normal file
11
.obsidian/plugins/dataview/manifest.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"id": "dataview",
|
||||
"name": "Dataview",
|
||||
"version": "0.5.67",
|
||||
"minAppVersion": "0.13.11",
|
||||
"description": "Complex data views for the data-obsessed.",
|
||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||
"authorUrl": "https://github.com/blacksmithgu",
|
||||
"helpUrl": "https://blacksmithgu.github.io/obsidian-dataview/",
|
||||
"isDesktopOnly": false
|
||||
}
|
146
.obsidian/plugins/dataview/styles.css
vendored
Normal file
146
.obsidian/plugins/dataview/styles.css
vendored
Normal file
|
@ -0,0 +1,146 @@
|
|||
/** Live Preview padding fixes, specifically for DataviewJS custom HTML elements. */
|
||||
.is-live-preview .block-language-dataviewjs > p, .is-live-preview .block-language-dataviewjs > span {
|
||||
line-height: 1.0;
|
||||
}
|
||||
|
||||
.block-language-dataview {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Table Views **/
|
||||
/*****************/
|
||||
|
||||
/* List View Default Styling; rendered internally as a table. */
|
||||
.table-view-table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr, .table-view-table > tbody > tr {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr:hover {
|
||||
background-color: var(--table-row-background-hover);
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr > th {
|
||||
font-weight: 700;
|
||||
font-size: larger;
|
||||
border-top: none;
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
border-bottom: solid;
|
||||
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr > td {
|
||||
text-align: left;
|
||||
border: none;
|
||||
font-weight: 400;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table ul, .table-view-table ol {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Rendered value styling for any view. */
|
||||
.dataview-result-list-root-ul {
|
||||
padding: 0em !important;
|
||||
margin: 0em !important;
|
||||
}
|
||||
|
||||
.dataview-result-list-ul {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Generic grouping styling. */
|
||||
.dataview.result-group {
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
/*******************/
|
||||
/** Inline Fields **/
|
||||
/*******************/
|
||||
|
||||
.dataview.inline-field-key {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-primary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-standalone-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
/***************/
|
||||
/** Task View **/
|
||||
/***************/
|
||||
|
||||
.dataview.task-list-item, .dataview.task-list-basic-item {
|
||||
margin-top: 3px;
|
||||
margin-bottom: 3px;
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
||||
background-color: var(--text-selection);
|
||||
box-shadow: -40px 0 0 var(--text-selection);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Error Views **/
|
||||
/*****************/
|
||||
|
||||
div.dataview-error-box {
|
||||
width: 100%;
|
||||
min-height: 150px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border: 4px dashed var(--background-secondary);
|
||||
}
|
||||
|
||||
.dataview-error-message {
|
||||
color: var(--text-muted);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*************************/
|
||||
/** Additional Metadata **/
|
||||
/*************************/
|
||||
|
||||
.dataview.small-text {
|
||||
font-size: smaller;
|
||||
color: var(--text-muted);
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
.dataview.small-text::before {
|
||||
content: "(";
|
||||
}
|
||||
|
||||
.dataview.small-text::after {
|
||||
content: ")";
|
||||
}
|
4
.obsidian/plugins/obsidian-excalidraw-plugin/main.js
vendored
Normal file
4
.obsidian/plugins/obsidian-excalidraw-plugin/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
12
.obsidian/plugins/obsidian-excalidraw-plugin/manifest.json
vendored
Normal file
12
.obsidian/plugins/obsidian-excalidraw-plugin/manifest.json
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"id": "obsidian-excalidraw-plugin",
|
||||
"name": "Excalidraw",
|
||||
"version": "2.5.1",
|
||||
"minAppVersion": "1.1.6",
|
||||
"description": "An Obsidian plugin to edit and view Excalidraw drawings",
|
||||
"author": "Zsolt Viczian",
|
||||
"authorUrl": "https://www.zsolt.blog",
|
||||
"fundingUrl": "https://ko-fi.com/zsolt",
|
||||
"helpUrl": "https://github.com/zsviczian/obsidian-excalidraw-plugin#readme",
|
||||
"isDesktopOnly": false
|
||||
}
|
1
.obsidian/plugins/obsidian-excalidraw-plugin/styles.css
vendored
Normal file
1
.obsidian/plugins/obsidian-excalidraw-plugin/styles.css
vendored
Normal file
File diff suppressed because one or more lines are too long
175
.obsidian/workspace.json
vendored
Normal file
175
.obsidian/workspace.json
vendored
Normal file
|
@ -0,0 +1,175 @@
|
|||
{
|
||||
"main": {
|
||||
"id": "cafb952b166d5b8b",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "398c213aaff5723f",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "25b8b0a6159a4372",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Netzwerke/L24-10-07 Intro.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "0cc05e9e7f6700ac",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "English/L24-10-07.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 1
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
},
|
||||
"left": {
|
||||
"id": "e8354f94eb028594",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "5f9ceffd2a4dfafb",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "cdbca9cf8752049a",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "file-explorer",
|
||||
"state": {
|
||||
"sortOrder": "alphabetical"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "7e5d80c1ba63b068",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "search",
|
||||
"state": {
|
||||
"query": "",
|
||||
"matchingCase": false,
|
||||
"explainSearch": false,
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "3f9292500b0c3e76",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "bookmarks",
|
||||
"state": {}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 300
|
||||
},
|
||||
"right": {
|
||||
"id": "3de6c8344a80c027",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "3d0531fa21178861",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "d1a82cc241818a71",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "English/L24-10-07.md",
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
"showSearch": false,
|
||||
"searchQuery": "",
|
||||
"backlinkCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "9a30cb57c64289cd",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outgoing-link",
|
||||
"state": {
|
||||
"file": "English/L24-10-07.md",
|
||||
"linksCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "d97158cb1a78ffb3",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "tag",
|
||||
"state": {
|
||||
"sortOrder": "frequency",
|
||||
"useHierarchy": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "0ec4a19c77a4b3f6",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outline",
|
||||
"state": {
|
||||
"file": "English/L24-10-07.md"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 300,
|
||||
"collapsed": true
|
||||
},
|
||||
"left-ribbon": {
|
||||
"hiddenItems": {
|
||||
"switcher:Open quick switcher": false,
|
||||
"graph:Open graph view": false,
|
||||
"canvas:Create new canvas": false,
|
||||
"daily-notes:Open today's daily note": false,
|
||||
"templates:Insert template": false,
|
||||
"command-palette:Open command palette": false
|
||||
}
|
||||
},
|
||||
"active": "0cc05e9e7f6700ac",
|
||||
"lastOpenFiles": [
|
||||
"Untitled.md",
|
||||
"English/L24-10-07.md",
|
||||
"Netzwerke/L24-10-07 Intro.md",
|
||||
"English",
|
||||
"Netzwerke/Pasted image 20241007100211.png",
|
||||
"Netzwerke/M24-10-07 Einführung Netzwerke AB ohne PT.pdf",
|
||||
"Netzwerke/M24-10-07 Einführung Packet Tracer.pdf",
|
||||
"Netzwerke/24-10-07 100 Einführung Packet Tracer.pdf.crdownload",
|
||||
"Welcome.md",
|
||||
"Netzwerke"
|
||||
]
|
||||
}
|
0
English/L24-10-07.md
Normal file
0
English/L24-10-07.md
Normal file
49
Netzwerke/L24-10-07 Intro.md
Normal file
49
Netzwerke/L24-10-07 Intro.md
Normal file
|
@ -0,0 +1,49 @@
|
|||
## Aufgabe Einführung
|
||||
![[M24-10-07 Einführung Packet Tracer.pdf]]
|
||||
1.3 Ping is ping
|
||||
1.6 Kann nicht erreichen
|
||||
|
||||
## Theorie Einführung
|
||||
![[M24-10-07 Einführung Netzwerke AB ohne PT.pdf]]
|
||||
#### 1.a
|
||||
- Enddevice: Endpunkt einer Verbindung, interagiert über Netzwerke mit anderen Endpunkten
|
||||
- Intermediary device: Routers, Switches, etc welche den Fluss von Daten in einem Netzwerk steuern
|
||||
- Media: Kabel und andere Leitungen über die Daten übertragen werden
|
||||
|
||||
#### 1.b
|
||||
![[Pasted image 20241007100211.png]]
|
||||
#### 2.b
|
||||
`[PLMWG]an` {Personal, Local, Metropolitan, Wide, Global} Area Network
|
||||
|
||||
### 3
|
||||
|
||||
| Bezeichnung | Beschreibung | Beispiele |
|
||||
| ------------- | ------------------------------------------------------------ | --------------------------------------- |
|
||||
| Simplex | Nachrichtung in eine Richtung | Ein Gleis mit einer zulässigen Richtung |
|
||||
| Half-Duplex | Transfer in eine oder andere Richtung, aber nie gleichzeitig | Ein Gleis, Züge in beide Richtungen |
|
||||
| (Full-)Duplex | Transfer in beide Richtungen gleichzeitig | Doppelgleisverbindung |
|
||||
|
||||
#### Bonus
|
||||
Netzwerktopologien
|
||||
- Stern
|
||||
- Verteiler in Mitte, Endpunkte alle an gleichen Verteiler
|
||||
- Vorteile: Sehr einfach aufzusetzen
|
||||
- Nachteile: Minimaler Busfaktor (Verteiler fällt aus, alles ist tot)
|
||||
- Ring
|
||||
- Alle Endpunkte in einem Ring verknüpft, immer nur zwei Verbindungen
|
||||
- Vorteile:
|
||||
- Leitungs & Verteilerausfall kann abgefangen werden (solange es nur ein Ausfall ist)
|
||||
- Höhere theoretische Reichweite
|
||||
- Nachteile:
|
||||
- Schwer neue Geräte zu einzufügen
|
||||
- Bus
|
||||
- Eine Hauptleitung an die Endpunkte anschliesen
|
||||
- Vorteile:
|
||||
- Nachteile:
|
||||
- Keine Resistenz
|
||||
- Mesh
|
||||
- Kann alles mit allem verbunden sein
|
||||
- Vorteile:
|
||||
- Sehr hohe Resistenz
|
||||
- Nachteile:
|
||||
- Höhere Material- & Rechenkosten
|
BIN
Netzwerke/M24-10-07 Einführung Netzwerke AB ohne PT.pdf
Normal file
BIN
Netzwerke/M24-10-07 Einführung Netzwerke AB ohne PT.pdf
Normal file
Binary file not shown.
BIN
Netzwerke/M24-10-07 Einführung Packet Tracer.pdf
Normal file
BIN
Netzwerke/M24-10-07 Einführung Packet Tracer.pdf
Normal file
Binary file not shown.
BIN
Netzwerke/Pasted image 20241007100211.png
Normal file
BIN
Netzwerke/Pasted image 20241007100211.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 57 KiB |
Loading…
Reference in a new issue