mac13: 2025-07-27 19:00:52

This commit is contained in:
2025-07-27 19:00:52 +02:00
parent 858768d24c
commit 6920b7f8af
290 changed files with 11039 additions and 10214 deletions
+26 -22
View File
@@ -1,22 +1,26 @@
### Deploy a storage account :
```text
az deployment group create \
--resource-group <resource-group-name> \
--template-file <filename>.bicep \
--parameters @<filename>.parameters.json
```
### Validate the deployment:
```text
az storage account show \
--name <storage-account-name> \
--resource-group <resource-group-name>
```
#### Kommentare :
// This is your primary NIC.
**Mehrspaltige Kommentare**
/* This Bicep file assumes the key vault already exists and
is in same subscription and resource group as the deployment. \*/
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
### Deploy a storage account :
```text
az deployment group create \
--resource-group <resource-group-name> \
--template-file <filename>.bicep \
--parameters @<filename>.parameters.json
```
### Validate the deployment:
```text
az storage account show \
--name <storage-account-name> \
--resource-group <resource-group-name>
```
#### Kommentare :
// This is your primary NIC.
**Mehrspaltige Kommentare**
/* This Bicep file assumes the key vault already exists and
is in same subscription and resource group as the deployment. \*/
+12 -8
View File
@@ -1,9 +1,13 @@
Strings formattieren :
###### String-Interpolation mit`$`
'Console.WriteLine(**$**"Hello, {name}! Today is {date.DayOfWeek}, it's {date:HH:mm} now.");'
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
Strings formattieren :
###### String-Interpolation mit`$`
'Console.WriteLine(**$**"Hello, {name}! Today is {date.DayOfWeek}, it's {date:HH:mm} now.");'
#format
+55 -53
View File
@@ -1,56 +1,58 @@
---
---
tags:
- windows
- cmd
---
Diskpart
Mittwoch, 2. Januar 2019
08:42
**Mit Diskpart den USB-Stick vorbereiten**
Geben Sie **diskpart**
ein und danach **list disk**
ein. Tippen Sie den Befehl \*\*select disk \<Nummer\*\* des USB-Sticks aus list disk>
ein. Sie erkennen den Stick an dessen Größe. Mit **clean**
löschen Sie den Inhalt des Sticks. Mit **create partition primary**
erstellen Sie eine neue primäre Partition, die Sie mit **active**
aktivieren. Dies ist für den Bootvorgang notwendig, denn nur so kann der USB-Stick booten.
Sollte die install.wim Datei des Windows-Images größer als 4GB sein, wird es beim Kopiervorgang zu einem Fehler kommen.
Am Schluss des Kopiervorgangs erscheint dann die Meldung, dass die Datei zu groß ist.
Diese Meldung erscheint, da hier das FAT32-Filesystem an seine Grenzen stößt und keine >4GB-Dateien verarbeiten kann.
Um dennoch den UEFI-USB-Stick fertigstellen zu können, müssen Sie einen kleinen Trick anwenden:
Mittels DISM muss die Datei in zwei oder mehrere \<4GB-Dateien aufgesplittet werden.
Bitte beachten Sie, dass dieser Vorgang seitens Microsoft nur bis Windows 7, bzw. Windows Server 2008 supported wird.[^\[3\]^](https://www.thomas-krenn.com/de/wiki/Windows_UEFI_Boot-Stick_unter_Windows_erstellen#cite_note-3) [^\[4\]^](https://www.thomas-krenn.com/de/wiki/Windows_UEFI_Boot-Stick_unter_Windows_erstellen#cite_note-4)
Geben Sie hierzu einfach folgenden Befehl ein:
> **Dism /Split-Image /ImageFile:E:\\sources\\install.wim /SWMFile:C:\\Users\\Administrator\\Desktop\\install.swm /FileSize:3000**
**/ImageFile:** Pfad der Quell-Datei install.wim im sources Ordner des Windows-ISOs
**/SWMFile:** Pfad der gesplitteten Ziel-Dateien
**/FileSize:** maximale Größe der gesplitteten Ziel-Dateien in MB
Aus \<\<https://www.thomas-krenn.com/de/wiki/Windows_UEFI_Boot-Stick_unter_Windows_erstellen\>>
#usb #cmd
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
Diskpart
Mittwoch, 2. Januar 2019
08:42
**Mit Diskpart den USB-Stick vorbereiten**
Geben Sie **diskpart**
ein und danach **list disk**
ein. Tippen Sie den Befehl \*\*select disk \<Nummer\*\* des USB-Sticks aus list disk>
ein. Sie erkennen den Stick an dessen Größe. Mit **clean**
löschen Sie den Inhalt des Sticks. Mit **create partition primary**
erstellen Sie eine neue primäre Partition, die Sie mit **active**
aktivieren. Dies ist für den Bootvorgang notwendig, denn nur so kann der USB-Stick booten.
Sollte die install.wim Datei des Windows-Images größer als 4GB sein, wird es beim Kopiervorgang zu einem Fehler kommen.
Am Schluss des Kopiervorgangs erscheint dann die Meldung, dass die Datei zu groß ist.
Diese Meldung erscheint, da hier das FAT32-Filesystem an seine Grenzen stößt und keine >4GB-Dateien verarbeiten kann.
Um dennoch den UEFI-USB-Stick fertigstellen zu können, müssen Sie einen kleinen Trick anwenden:
Mittels DISM muss die Datei in zwei oder mehrere \<4GB-Dateien aufgesplittet werden.
Bitte beachten Sie, dass dieser Vorgang seitens Microsoft nur bis Windows 7, bzw. Windows Server 2008 supported wird.[^\[3\]^](https://www.thomas-krenn.com/de/wiki/Windows_UEFI_Boot-Stick_unter_Windows_erstellen#cite_note-3) [^\[4\]^](https://www.thomas-krenn.com/de/wiki/Windows_UEFI_Boot-Stick_unter_Windows_erstellen#cite_note-4)
Geben Sie hierzu einfach folgenden Befehl ein:
> **Dism /Split-Image /ImageFile:E:\\sources\\install.wim /SWMFile:C:\\Users\\Administrator\\Desktop\\install.swm /FileSize:3000**
**/ImageFile:** Pfad der Quell-Datei install.wim im sources Ordner des Windows-ISOs
**/SWMFile:** Pfad der gesplitteten Ziel-Dateien
**/FileSize:** maximale Größe der gesplitteten Ziel-Dateien in MB
Aus \<\<https://www.thomas-krenn.com/de/wiki/Windows_UEFI_Boot-Stick_unter_Windows_erstellen\>>
#usb #cmd
+4
View File
@@ -1,3 +1,7 @@
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
Obsidian in einem Docker siehe :
https://github.com/rsmacapinlac/docker-obsidian
+25 -23
View File
@@ -1,26 +1,28 @@
---
---
tags:
- mac
---
> DeathToDSStore source code,
Clipped from [macOs - How to stop creating .DS_Store on Mac? - Stack Overflow](https://stackoverflow.com/questions/18015978/how-to-stop-creating-ds-store-on-mac) at 2023-11-13.
### To speed up SMB file browsing,
you can prevent macOS from reading .DS_Store files on SMB shares. This makes the Finder use only basic information to immediately display each folder's contents in alphanumeric order. Use this Terminal command:
```bash
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE```
Then log out of your macOS account and log back in.
To reenable sorting, use this command:
```bash
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool FALSE```
created: 2025-07-20T17:21
updated: 2025-07-20T17:21
---
> DeathToDSStore source code,
Clipped from [macOs - How to stop creating .DS_Store on Mac? - Stack Overflow](https://stackoverflow.com/questions/18015978/how-to-stop-creating-ds-store-on-mac) at 2023-11-13.
### To speed up SMB file browsing,
you can prevent macOS from reading .DS_Store files on SMB shares. This makes the Finder use only basic information to immediately display each folder's contents in alphanumeric order. Use this Terminal command:
```bash
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE```
Then log out of your macOS account and log back in.
To reenable sorting, use this command:
```bash
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool FALSE```
#mac #cmd #smb
+11 -7
View File
@@ -1,8 +1,12 @@
# Foam Configuration
- "foam.openDailyNote.directory": "Eingang",
- "foam.openDailyNote.filenameFormat": "'daily-note'-yyyy-mm-dd",
---
created: 2025-07-20T17:21
updated: 2025-07-20T17:21
---
# Foam Configuration
- "foam.openDailyNote.directory": "Eingang",
- "foam.openDailyNote.filenameFormat": "'daily-note'-yyyy-mm-dd",
#foam, #technik, #config
+60 -60
View File
@@ -1,61 +1,61 @@
---
---
created: 2025-06-02T13:00
updated: 2025-06-02T18:21
---
Hallo,
Die FRITZ!Boxen verfügen über einen sogenannten „Service Code“, der sehr nützliche Informationen über den Router verrät.
Trage in der Browserzeile folgendes ein:
[http://fritz.box/cgi-bin/system_status](https://web.archive.org/web/20211225134222/http://fritz.box/cgi-bin/system_status)
Hier ein Beispiel:
FRITZ!Box
<span style="color:red">
7590
</span>-<span style="color:green">
B
</span>-<span style="color:silver">
010107
</span>-<span style="color:teal">
475025
</span>-<span style="color:purple">
240433
</span>-<span style="color:blue">
787902
</span>-<span style="color:gray">
1540710
</span>-<span style="color:lime">
67453
</span>-avm
- <span style="color:red">
FRITZ!Box Modell (Name)
</span>
- <span style="color:green">
Annex
</span>
- <span style="color:silver">
Gesamtlaufzeit der Box (Stunden, Tage, Monate, Jahre)
</span>
- <span style="color:teal">
Neustarts
</span>
- <span style="color:purple">
Hash
</span>
- <span style="color:blue">
Status
</span>
- <span style="color:gray">
Firmwareversion
</span>
- <span style="color:lime">
Sub-Version
</span>
- Branding
Fritzbox 7590 WAN :
FRITZ!Box 7590-B-102508-076432-XXXXXX-XXXXXX-787903-1540803-119633-avm
updated: 2025-07-20T17:22
---
Hallo,
Die FRITZ!Boxen verfügen über einen sogenannten „Service Code“, der sehr nützliche Informationen über den Router verrät.
Trage in der Browserzeile folgendes ein:
[http://fritz.box/cgi-bin/system_status](https://web.archive.org/web/20211225134222/http://fritz.box/cgi-bin/system_status)
Hier ein Beispiel:
FRITZ!Box
<span style="color:red">
7590
</span>-<span style="color:green">
B
</span>-<span style="color:silver">
010107
</span>-<span style="color:teal">
475025
</span>-<span style="color:purple">
240433
</span>-<span style="color:blue">
787902
</span>-<span style="color:gray">
1540710
</span>-<span style="color:lime">
67453
</span>-avm
- <span style="color:red">
FRITZ!Box Modell (Name)
</span>
- <span style="color:green">
Annex
</span>
- <span style="color:silver">
Gesamtlaufzeit der Box (Stunden, Tage, Monate, Jahre)
</span>
- <span style="color:teal">
Neustarts
</span>
- <span style="color:purple">
Hash
</span>
- <span style="color:blue">
Status
</span>
- <span style="color:gray">
Firmwareversion
</span>
- <span style="color:lime">
Sub-Version
</span>
- Branding
Fritzbox 7590 WAN :
FRITZ!Box 7590-B-102508-076432-XXXXXX-XXXXXX-787903-1540803-119633-avm
+160 -156
View File
@@ -1,157 +1,161 @@
### Farben :
| Colorname | HEX | RGB | Example |
| -------------------- | ------ | ----------- | --------------------------------- |
| DeepPink | FF1493 | 255,20,147 | <font color=FF1493>Example</font> |
| DeepSkyBlue | 00BFFF | 0,191,255 | <font color=00BFFF>Example</font> |
| DimGray | 696969 | 105,105,105 | <font color=696969>Example</font> |
| DimGrey | 696969 | 105,105,105 | <font color=696969>Example</font> |
| DodgerBlue | 1E90FF | 30,144,255 | <font color=1E90FF>Example</font> |
| FireBrick | B22222 | 178,34,34 | <font color=B22222>Example</font> |
| FloralWhite | FFFAF0 | 255,250,240 | <font color=FFFAF0>Example</font> |
| ForestGreen | 228B22 | 34,139,34 | <font color=228B22>Example</font> |
| Fuchsia | FF00FF | 255,0,255 | <font color=FF00FF>Example</font> |
| Gainsboro | DCDCDC | 220,220,220 | <font color=DCDCDC>Example</font> |
| GhostWhite | F8F8FF | 248,248,255 | <font color=F8F8FF>Example</font> |
| Gold | FFD700 | 255,215,0 | <font color=FFD700>Example</font> |
| GoldenRod | DAA520 | 218,165,32 | <font color=DAA520>Example</font> |
| Gray | 808080 | 128,128,128 | <font color=808080>Example</font> |
| Grey | 808080 | 128,128,128 | <font color=808080>Example</font> |
| Green | 008000 | 0,128,0 | <font color=008000>Example</font> |
| GreenYellow | ADFF2F | 173,255,47 | <font color=ADFF2F>Example</font> |
| HoneyDew | F0FFF0 | 240,255,240 | <font color=F0FFF0>Example</font> |
| HotPink | FF69B4 | 255,105,180 | <font color=FF69B4>Example</font> |
| IndianRed | CD5C5C | 205,92,92 | <font color=CD5C5C>Example</font> |
| Indigo | 4B0082 | 75,0,130 | <font color=4B0082>Example</font> |
| Ivory | FFFFF0 | 255,255,240 | <font color=FFFFF0>Example</font> |
| Khaki | F0E68C | 240,230,140 | <font color=F0E68C>Example</font> |
| Lavender | E6E6FA | 230,230,250 | <font color=E6E6FA>Example</font> |
| LavenderBlush | FFF0F5 | 255,240,245 | <font color=FFF0F5>Example</font> |
| LawnGreen | 7CFC00 | 124,252,0 | <font color=7CFC00>Example</font> |
| LemonChiffon | FFFACD | 255,250,205 | <font color=FFFACD>Example</font> |
| LightBlue | ADD8E6 | 173,216,230 | <font color=ADD8E6>Example</font> |
| LightCoral | F08080 | 240,128,128 | <font color=F08080>Example</font> |
| LightCyan | E0FFFF | 224,255,255 | <font color=E0FFFF>Example</font> |
| LightGoldenRodYellow | FAFAD2 | 250,250,210 | <font color=FAFAD2>Example</font> |
| LightGray | D3D3D3 | 211,211,211 | <font color=D3D3D3>Example</font> |
| LightGrey | D3D3D3 | 211,211,211 | <font color=D3D3D3>Example</font> |
| LightGreen | 90EE90 | 144,238,144 | <font color=90EE90>Example</font> |
| LightPink | FFB6C1 | 255,182,193 | <font color=FFB6C1>Example</font> |
| LightSalmon | FFA07A | 255,160,122 | <font color=FFA07A>Example</font> |
| LightSeaGreen | 20B2AA | 32,178,170 | <font color=20B2AA>Example</font> |
| LightSkyBlue | 87CEFA | 135,206,250 | <font color=87CEFA>Example</font> |
| LightSlateGray | 778899 | 119,136,153 | <font color=778899>Example</font> |
| LightSlateGrey | 778899 | 119,136,153 | <font color=778899>Example</font> |
| LightSteelBlue | B0C4DE | 176,196,222 | <font color=B0C4DE>Example</font> |
| LightYellow | FFFFE0 | 255,255,224 | <font color=FFFFE0>Example</font> |
| Lime | 00FF00 | 0,255,0 | <font color=00FF00>Example</font> |
| LimeGreen | 32CD32 | 50,205,50 | <font color=32CD32>Example</font> |
| Linen | FAF0E6 | 250,240,230 | <font color=FAF0E6>Example</font> |
| Magenta | FF00FF | 255,0,255 | <font color=FF00FF>Example</font> |
| Maroon | 800000 | 128,0,0 | <font color=800000>Example</font> |
| MediumAquaMarine | 66CDAA | 102,205,170 | <font color=66CDAA>Example</font> |
| MediumBlue | 0000CD | 0,0,205 | <font color=0000CD>Example</font> |
| MediumOrchid | BA55D3 | 186,85,211 | <font color=BA55D3>Example</font> |
| MediumPurple | 9370DB | 147,112,219 | <font color=9370DB>Example</font> |
| MediumSeaGreen | 3CB371 | 60,179,113 | <font color=3CB371>Example</font> |
| MediumSlateBlue | 7B68EE | 123,104,238 | <font color=7B68EE>Example</font> |
| MediumSpringGreen | 00FA9A | 0,250,154 | <font color=00FA9A>Example</font> |
| MediumTurquoise | 48D1CC | 72,209,204 | <font color=48D1CC>Example</font> |
| MediumVioletRed | C71585 | 199,21,133 | <font color=C71585>Example</font> |
| MidnightBlue | 191970 | 25,25,112 | <font color=191970>Example</font> |
| MintCream | F5FFFA | 245,255,250 | <font color=F5FFFA>Example</font> |
| MistyRose | FFE4E1 | 255,228,225 | <font color=FFE4E1>Example</font> |
| Moccasin | FFE4B5 | 255,228,181 | <font color=FFE4B5>Example</font> |
| NavajoWhite | FFDEAD | 255,222,173 | <font color=FFDEAD>Example</font> |
| Navy | 000080 | 0,0,128 | <font color=000080>Example</font> |
| OldLace | FDF5E6 | 253,245,230 | <font color=FDF5E6>Example</font> |
| Olive | 808000 | 128,128,0 | <font color=808000>Example</font> |
| OliveDrab | 6B8E23 | 107,142,35 | <font color=6B8E23>Example</font> |
| Orange | FFA500 | 255,165,0 | <font color=FFA500>Example</font> |
| OrangeRed | FF4500 | 255,69,0 | <font color=FF4500>Example</font> |
| Orchid | DA70D6 | 218,112,214 | <font color=DA70D6>Example</font> |
| PaleGoldenRod | EEE8AA | 238,232,170 | <font color=EEE8AA>Example</font> |
| PaleGreen | 98FB98 | 152,251,152 | <font color=98FB98>Example</font> |
| PaleTurquoise | AFEEEE | 175,238,238 | <font color=AFEEEE>Example</font> |
| PaleVioletRed | DB7093 | 219,112,147 | <font color=DB7093>Example</font> |
| PapayaWhip | FFEFD5 | 255,239,213 | <font color=FFEFD5>Example</font> |
| PeachPuff | FFDAB9 | 255,218,185 | <font color=FFDAB9>Example</font> |
| Peru | CD853F | 205,133,63 | <font color=CD853F>Example</font> |
| Pink | FFC0CB | 255,192,203 | <font color=FFC0CB>Example</font> |
| Plum | DDA0DD | 221,160,221 | <font color=DDA0DD>Example</font> |
| PowderBlue | B0E0E6 | 176,224,230 | <font color=B0E0E6>Example</font> |
| Purple | 800080 | 128,0,128 | <font color=800080>Example</font> |
| RebeccaPurple | 663399 | 102,51,153 | <font color=663399>Example</font> |
| Red | FF0000 | 255,0,0 | <font color=FF0000>Example</font> |
| RosyBrown | BC8F8F | 188,143,143 | <font color=BC8F8F>Example</font> |
| RoyalBlue | 4169E1 | 65,105,225 | <font color=4169E1>Example</font> |
| SaddleBrown | 8B4513 | 139,69,19 | <font color=8B4513>Example</font> |
| Salmon | FA8072 | 250,128,114 | <font color=FA8072>Example</font> |
| SandyBrown | F4A460 | 244,164,96 | <font color=F4A460>Example</font> |
| SeaGreen | 2E8B57 | 46,139,87 | <font color=2E8B57>Example</font> |
| SeaShell | FFF5EE | 255,245,238 | <font color=FFF5EE>Example</font> |
| Sienna | A0522D | 160,82,45 | <font color=A0522D>Example</font> |
| Silver | C0C0C0 | 192,192,192 | <font color=C0C0C0>Example</font> |
| SkyBlue | 87CEEB | 135,206,235 | <font color=87CEEB>Example</font> |
| SlateBlue | 6A5ACD | 106,90,205 | <font color=6A5ACD>Example</font> |
| SlateGray | 708090 | 112,128,144 | <font color=708090>Example</font> |
| SlateGrey | 708090 | 112,128,144 | <font color=708090>Example</font> |
| Snow | FFFAFA | 255,250,250 | <font color=FFFAFA>Example</font> |
| SpringGreen | 00FF7F | 0,255,127 | <font color=00FF7F>Example</font> |
| SteelBlue | 4682B4 | 70,130,180 | <font color=4682B4>Example</font> |
| Tan | D2B48C | 210,180,140 | <font color=D2B48C>Example</font> |
| Teal | 008080 | 0,128,128 | <font color=008080>Example</font> |
| Thistle | D8BFD8 | 216,191,216 | <font color=D8BFD8>Example</font> |
| Tomato | FF6347 | 255,99,71 | <font color=FF6347>Example</font> |
| Turquoise | 40E0D0 | 64,224,208 | <font color=40E0D0>Example</font> |
| Violet | EE82EE | 238,130,238 | <font color=EE82EE>Example</font> |
| Wheat | F5DEB3 | 245,222,179 | <font color=F5DEB3>Example</font> |
| White | FFFFFF | 255,255,255 | <font color=FFFFFF>Example</font> |
| WhiteSmoke | F5F5F5 | 245,245,245 | <font color=F5F5F5>Example</font> |
| Yellow | FFFF00 | 255,255,0 | <font color=FFFF00>Example</font> |
| YellowGreen | 9ACD32 | 154,205,50 | <font color=9ACD32>Example</font> |
### Schrift Grössen :
```text
<FONT SIZE="5">Hallo, ich bin ein Text der Grösse 5</FONT>
```
<FONT SIZE="5">Hallo, ich bin ein Text der Grösse 5</FONT>
<span style="font-size:6pt">Beispieltext
mit Schriftgrösse 6pt</span><br>
<span style="font-size:8pt">Beispieltext
mit Schriftgrösse 8pt</span><br>
<span style="font-size:10pt">Beispieltext
mit Schriftgrösse 10pt</span><br>
<span style="font-size:12pt">Beispieltext
mit Schriftgrösse 12pt</span><br>
<span style="font-size:14pt">Beispieltext
mit Schriftgrösse 14pt</span><br>
<span style="font-size:18pt">Beispieltext
mit Schriftgrösse 18pt</span><br>
### Schrift Stile
1. **<FONT FACE="Arial">**Hallo, ich bin ein Text in Arial**</FONT>**
2. **<FONT FACE="Times New Roman">**Hallo, ich bin ein Text in Times New Roman**</FONT>**
3. **<FONT FACE="Bookman Old Style">**Hallo, ich bin ein Text in Bookman Old Style**</FONT>**
4. **<FONT FACE="Wingdings">**Hallo, ich bin ein Text in Wingdings**</FONT>**
5. **<FONT FACE="Glowworm, Arial">**Hallo, ich bin ein Text in Glowworm, erscheine aber, falls diese Schrift nicht installiert ist, in Arial.**</FONT>**
#### 2 Werte zusammen:
Größe und bold
<FONT SIZE="5"><b>Reset : </b></FONT>
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
### Farben :
| Colorname | HEX | RGB | Example |
| -------------------- | ------ | ----------- | --------------------------------- |
| DeepPink | FF1493 | 255,20,147 | <font color=FF1493>Example</font> |
| DeepSkyBlue | 00BFFF | 0,191,255 | <font color=00BFFF>Example</font> |
| DimGray | 696969 | 105,105,105 | <font color=696969>Example</font> |
| DimGrey | 696969 | 105,105,105 | <font color=696969>Example</font> |
| DodgerBlue | 1E90FF | 30,144,255 | <font color=1E90FF>Example</font> |
| FireBrick | B22222 | 178,34,34 | <font color=B22222>Example</font> |
| FloralWhite | FFFAF0 | 255,250,240 | <font color=FFFAF0>Example</font> |
| ForestGreen | 228B22 | 34,139,34 | <font color=228B22>Example</font> |
| Fuchsia | FF00FF | 255,0,255 | <font color=FF00FF>Example</font> |
| Gainsboro | DCDCDC | 220,220,220 | <font color=DCDCDC>Example</font> |
| GhostWhite | F8F8FF | 248,248,255 | <font color=F8F8FF>Example</font> |
| Gold | FFD700 | 255,215,0 | <font color=FFD700>Example</font> |
| GoldenRod | DAA520 | 218,165,32 | <font color=DAA520>Example</font> |
| Gray | 808080 | 128,128,128 | <font color=808080>Example</font> |
| Grey | 808080 | 128,128,128 | <font color=808080>Example</font> |
| Green | 008000 | 0,128,0 | <font color=008000>Example</font> |
| GreenYellow | ADFF2F | 173,255,47 | <font color=ADFF2F>Example</font> |
| HoneyDew | F0FFF0 | 240,255,240 | <font color=F0FFF0>Example</font> |
| HotPink | FF69B4 | 255,105,180 | <font color=FF69B4>Example</font> |
| IndianRed | CD5C5C | 205,92,92 | <font color=CD5C5C>Example</font> |
| Indigo | 4B0082 | 75,0,130 | <font color=4B0082>Example</font> |
| Ivory | FFFFF0 | 255,255,240 | <font color=FFFFF0>Example</font> |
| Khaki | F0E68C | 240,230,140 | <font color=F0E68C>Example</font> |
| Lavender | E6E6FA | 230,230,250 | <font color=E6E6FA>Example</font> |
| LavenderBlush | FFF0F5 | 255,240,245 | <font color=FFF0F5>Example</font> |
| LawnGreen | 7CFC00 | 124,252,0 | <font color=7CFC00>Example</font> |
| LemonChiffon | FFFACD | 255,250,205 | <font color=FFFACD>Example</font> |
| LightBlue | ADD8E6 | 173,216,230 | <font color=ADD8E6>Example</font> |
| LightCoral | F08080 | 240,128,128 | <font color=F08080>Example</font> |
| LightCyan | E0FFFF | 224,255,255 | <font color=E0FFFF>Example</font> |
| LightGoldenRodYellow | FAFAD2 | 250,250,210 | <font color=FAFAD2>Example</font> |
| LightGray | D3D3D3 | 211,211,211 | <font color=D3D3D3>Example</font> |
| LightGrey | D3D3D3 | 211,211,211 | <font color=D3D3D3>Example</font> |
| LightGreen | 90EE90 | 144,238,144 | <font color=90EE90>Example</font> |
| LightPink | FFB6C1 | 255,182,193 | <font color=FFB6C1>Example</font> |
| LightSalmon | FFA07A | 255,160,122 | <font color=FFA07A>Example</font> |
| LightSeaGreen | 20B2AA | 32,178,170 | <font color=20B2AA>Example</font> |
| LightSkyBlue | 87CEFA | 135,206,250 | <font color=87CEFA>Example</font> |
| LightSlateGray | 778899 | 119,136,153 | <font color=778899>Example</font> |
| LightSlateGrey | 778899 | 119,136,153 | <font color=778899>Example</font> |
| LightSteelBlue | B0C4DE | 176,196,222 | <font color=B0C4DE>Example</font> |
| LightYellow | FFFFE0 | 255,255,224 | <font color=FFFFE0>Example</font> |
| Lime | 00FF00 | 0,255,0 | <font color=00FF00>Example</font> |
| LimeGreen | 32CD32 | 50,205,50 | <font color=32CD32>Example</font> |
| Linen | FAF0E6 | 250,240,230 | <font color=FAF0E6>Example</font> |
| Magenta | FF00FF | 255,0,255 | <font color=FF00FF>Example</font> |
| Maroon | 800000 | 128,0,0 | <font color=800000>Example</font> |
| MediumAquaMarine | 66CDAA | 102,205,170 | <font color=66CDAA>Example</font> |
| MediumBlue | 0000CD | 0,0,205 | <font color=0000CD>Example</font> |
| MediumOrchid | BA55D3 | 186,85,211 | <font color=BA55D3>Example</font> |
| MediumPurple | 9370DB | 147,112,219 | <font color=9370DB>Example</font> |
| MediumSeaGreen | 3CB371 | 60,179,113 | <font color=3CB371>Example</font> |
| MediumSlateBlue | 7B68EE | 123,104,238 | <font color=7B68EE>Example</font> |
| MediumSpringGreen | 00FA9A | 0,250,154 | <font color=00FA9A>Example</font> |
| MediumTurquoise | 48D1CC | 72,209,204 | <font color=48D1CC>Example</font> |
| MediumVioletRed | C71585 | 199,21,133 | <font color=C71585>Example</font> |
| MidnightBlue | 191970 | 25,25,112 | <font color=191970>Example</font> |
| MintCream | F5FFFA | 245,255,250 | <font color=F5FFFA>Example</font> |
| MistyRose | FFE4E1 | 255,228,225 | <font color=FFE4E1>Example</font> |
| Moccasin | FFE4B5 | 255,228,181 | <font color=FFE4B5>Example</font> |
| NavajoWhite | FFDEAD | 255,222,173 | <font color=FFDEAD>Example</font> |
| Navy | 000080 | 0,0,128 | <font color=000080>Example</font> |
| OldLace | FDF5E6 | 253,245,230 | <font color=FDF5E6>Example</font> |
| Olive | 808000 | 128,128,0 | <font color=808000>Example</font> |
| OliveDrab | 6B8E23 | 107,142,35 | <font color=6B8E23>Example</font> |
| Orange | FFA500 | 255,165,0 | <font color=FFA500>Example</font> |
| OrangeRed | FF4500 | 255,69,0 | <font color=FF4500>Example</font> |
| Orchid | DA70D6 | 218,112,214 | <font color=DA70D6>Example</font> |
| PaleGoldenRod | EEE8AA | 238,232,170 | <font color=EEE8AA>Example</font> |
| PaleGreen | 98FB98 | 152,251,152 | <font color=98FB98>Example</font> |
| PaleTurquoise | AFEEEE | 175,238,238 | <font color=AFEEEE>Example</font> |
| PaleVioletRed | DB7093 | 219,112,147 | <font color=DB7093>Example</font> |
| PapayaWhip | FFEFD5 | 255,239,213 | <font color=FFEFD5>Example</font> |
| PeachPuff | FFDAB9 | 255,218,185 | <font color=FFDAB9>Example</font> |
| Peru | CD853F | 205,133,63 | <font color=CD853F>Example</font> |
| Pink | FFC0CB | 255,192,203 | <font color=FFC0CB>Example</font> |
| Plum | DDA0DD | 221,160,221 | <font color=DDA0DD>Example</font> |
| PowderBlue | B0E0E6 | 176,224,230 | <font color=B0E0E6>Example</font> |
| Purple | 800080 | 128,0,128 | <font color=800080>Example</font> |
| RebeccaPurple | 663399 | 102,51,153 | <font color=663399>Example</font> |
| Red | FF0000 | 255,0,0 | <font color=FF0000>Example</font> |
| RosyBrown | BC8F8F | 188,143,143 | <font color=BC8F8F>Example</font> |
| RoyalBlue | 4169E1 | 65,105,225 | <font color=4169E1>Example</font> |
| SaddleBrown | 8B4513 | 139,69,19 | <font color=8B4513>Example</font> |
| Salmon | FA8072 | 250,128,114 | <font color=FA8072>Example</font> |
| SandyBrown | F4A460 | 244,164,96 | <font color=F4A460>Example</font> |
| SeaGreen | 2E8B57 | 46,139,87 | <font color=2E8B57>Example</font> |
| SeaShell | FFF5EE | 255,245,238 | <font color=FFF5EE>Example</font> |
| Sienna | A0522D | 160,82,45 | <font color=A0522D>Example</font> |
| Silver | C0C0C0 | 192,192,192 | <font color=C0C0C0>Example</font> |
| SkyBlue | 87CEEB | 135,206,235 | <font color=87CEEB>Example</font> |
| SlateBlue | 6A5ACD | 106,90,205 | <font color=6A5ACD>Example</font> |
| SlateGray | 708090 | 112,128,144 | <font color=708090>Example</font> |
| SlateGrey | 708090 | 112,128,144 | <font color=708090>Example</font> |
| Snow | FFFAFA | 255,250,250 | <font color=FFFAFA>Example</font> |
| SpringGreen | 00FF7F | 0,255,127 | <font color=00FF7F>Example</font> |
| SteelBlue | 4682B4 | 70,130,180 | <font color=4682B4>Example</font> |
| Tan | D2B48C | 210,180,140 | <font color=D2B48C>Example</font> |
| Teal | 008080 | 0,128,128 | <font color=008080>Example</font> |
| Thistle | D8BFD8 | 216,191,216 | <font color=D8BFD8>Example</font> |
| Tomato | FF6347 | 255,99,71 | <font color=FF6347>Example</font> |
| Turquoise | 40E0D0 | 64,224,208 | <font color=40E0D0>Example</font> |
| Violet | EE82EE | 238,130,238 | <font color=EE82EE>Example</font> |
| Wheat | F5DEB3 | 245,222,179 | <font color=F5DEB3>Example</font> |
| White | FFFFFF | 255,255,255 | <font color=FFFFFF>Example</font> |
| WhiteSmoke | F5F5F5 | 245,245,245 | <font color=F5F5F5>Example</font> |
| Yellow | FFFF00 | 255,255,0 | <font color=FFFF00>Example</font> |
| YellowGreen | 9ACD32 | 154,205,50 | <font color=9ACD32>Example</font> |
### Schrift Grössen :
```text
<FONT SIZE="5">Hallo, ich bin ein Text der Grösse 5</FONT>
```
<FONT SIZE="5">Hallo, ich bin ein Text der Grösse 5</FONT>
<span style="font-size:6pt">Beispieltext
mit Schriftgrösse 6pt</span><br>
<span style="font-size:8pt">Beispieltext
mit Schriftgrösse 8pt</span><br>
<span style="font-size:10pt">Beispieltext
mit Schriftgrösse 10pt</span><br>
<span style="font-size:12pt">Beispieltext
mit Schriftgrösse 12pt</span><br>
<span style="font-size:14pt">Beispieltext
mit Schriftgrösse 14pt</span><br>
<span style="font-size:18pt">Beispieltext
mit Schriftgrösse 18pt</span><br>
### Schrift Stile
1. **<FONT FACE="Arial">**Hallo, ich bin ein Text in Arial**</FONT>**
2. **<FONT FACE="Times New Roman">**Hallo, ich bin ein Text in Times New Roman**</FONT>**
3. **<FONT FACE="Bookman Old Style">**Hallo, ich bin ein Text in Bookman Old Style**</FONT>**
4. **<FONT FACE="Wingdings">**Hallo, ich bin ein Text in Wingdings**</FONT>**
5. **<FONT FACE="Glowworm, Arial">**Hallo, ich bin ein Text in Glowworm, erscheine aber, falls diese Schrift nicht installiert ist, in Arial.**</FONT>**
#### 2 Werte zusammen:
Größe und bold
<FONT SIZE="5"><b>Reset : </b></FONT>
#markdown #html #format #howto
+12 -8
View File
@@ -1,8 +1,12 @@
zusätzliche Composer einstellungen :
```yaml
- NODE_TLS_REJECT_UNAUTHORIZED=0 # Optional, ab jetzt wird den Self Signed Certs deiner Anwendungen vertraut.
- DISABLE_ANALYTICS=true
```
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
zusätzliche Composer einstellungen :
```yaml
- NODE_TLS_REJECT_UNAUTHORIZED=0 # Optional, ab jetzt wird den Self Signed Certs deiner Anwendungen vertraut.
- DISABLE_ANALYTICS=true
```
+12 -12
View File
@@ -1,14 +1,14 @@
---
---
created: 2025-03-27T16:11
updated: 2025-04-10T18:13
---
#### Admin Account
- username: admin@ictcore.org
- password: helloAdmin
#### User Account
- username: user@ictcore.org
- password: helloUser
updated: 2025-07-20T17:22
---
#### Admin Account
- username: admin@ictcore.org
- password: helloAdmin
#### User Account
- username: user@ictcore.org
- password: helloUser
-
+11 -11
View File
@@ -1,12 +1,12 @@
---
---
created: 2025-06-11T17:16
updated: 2025-06-11T17:28
---
Erklär Video ADD Windows RDP und SSO
https://www.youtube.com/watch?v=_WCee4-E4vA
Run Workspace as Root AND API ACCESS :
Kasm Workspaces - Operations Course
https://www.youtube.com/watch?v=RAxqmrzGQxU
updated: 2025-07-20T17:22
---
Erklär Video ADD Windows RDP und SSO
https://www.youtube.com/watch?v=_WCee4-E4vA
Run Workspace as Root AND API ACCESS :
Kasm Workspaces - Operations Course
https://www.youtube.com/watch?v=RAxqmrzGQxU
+11 -7
View File
@@ -1,8 +1,12 @@
MS Erklärung :
https://learn.microsoft.com/en-us/sharepoint/dev/spfx/extensions/get-started/building-simple-field-customizer
---
created: 2025-07-20T17:21
updated: 2025-07-20T17:21
---
MS Erklärung :
https://learn.microsoft.com/en-us/sharepoint/dev/spfx/extensions/get-started/building-simple-field-customizer
#lernen #SPFX
+34 -34
View File
@@ -1,36 +1,36 @@
---
---
created: 2025-07-07T12:45
updated: 2025-07-07T12:46
---
Beispiel Compose file
services:
postgres:
image: postgres:16-alpine
env_file: .env
restart: always
volumes:
- ./pgdata:/var/lib/postgresql/data
linkwarden:
env_file: .env
environment:
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
restart: always
# build: . # uncomment to build from source
image: ghcr.io/linkwarden/linkwarden:latest # comment to build from source
ports:
- 3000:3000
volumes:
- ./data:/data/data
depends_on:
- postgres
- meilisearch
meilisearch:
image: getmeili/meilisearch:v1.12.8
restart: always
env_file:
- .env
volumes:
updated: 2025-07-20T17:22
---
Beispiel Compose file
services:
postgres:
image: postgres:16-alpine
env_file: .env
restart: always
volumes:
- ./pgdata:/var/lib/postgresql/data
linkwarden:
env_file: .env
environment:
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
restart: always
# build: . # uncomment to build from source
image: ghcr.io/linkwarden/linkwarden:latest # comment to build from source
ports:
- 3000:3000
volumes:
- ./data:/data/data
depends_on:
- postgres
- meilisearch
meilisearch:
image: getmeili/meilisearch:v1.12.8
restart: always
env_file:
- .env
volumes:
- ./meili_data:/meili_data
+14 -10
View File
@@ -1,10 +1,14 @@
Change the Resolution :
nano /etc/default/grub
Change :
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash video=hyperv_fb:1920x1080
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
Change the Resolution :
nano /etc/default/grub
Change :
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash video=hyperv_fb:1920x1080
+44 -44
View File
@@ -1,45 +1,45 @@
---
---
created: 2025-04-10T18:03
updated: 2025-05-19T09:03
---
### Linux Configurationen
##### Scripte for und nach Bereitschaft ausführen :
Ordner :
/usr/lib/systemd/system-sleep oder
/usr/systemd/system-sleep
Script
```Command
case $1/$2 in
pre/*)
echo "Going to $2..."
rfkill block all
;;
post/*)
echo "Waking up from $2..."
rfkill unblock all
;;
esac
```
#### Brightness auf dem Display einstellen
```Code
xrandr --output eDP-1 --brightness 0.5
```
** Nemo DateiManager in Cinnamon **
Einhängen einer Samba Freigabe
```code
nemo smb://ralfk@192.168.132.19
```
#### Wireguard VPN Conf Importieren
```bash
nmcli connection import type wireguard file ./wg-lg-zuhause.conf
```
updated: 2025-07-20T17:22
---
### Linux Configurationen
##### Scripte for und nach Bereitschaft ausführen :
Ordner :
/usr/lib/systemd/system-sleep oder
/usr/systemd/system-sleep
Script
```Command
case $1/$2 in
pre/*)
echo "Going to $2..."
rfkill block all
;;
post/*)
echo "Waking up from $2..."
rfkill unblock all
;;
esac
```
#### Brightness auf dem Display einstellen
```Code
xrandr --output eDP-1 --brightness 0.5
```
** Nemo DateiManager in Cinnamon **
Einhängen einer Samba Freigabe
```code
nemo smb://ralfk@192.168.132.19
```
#### Wireguard VPN Conf Importieren
```bash
nmcli connection import type wireguard file ./wg-lg-zuhause.conf
```
+4
View File
@@ -1,3 +1,7 @@
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
# NFS Freigaben auf einem Server
hier mal eine Beispiel einer /etc/expotrs Datei :
+4
View File
@@ -1,3 +1,7 @@
---
created: 2025-07-20T17:21
updated: 2025-07-20T17:21
---
# LVM
Add 10GB to "root" volume: (Bei mir das 2.te)
+4
View File
@@ -1,3 +1,7 @@
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
# Mac Tastenkürzel
+30 -26
View File
@@ -1,27 +1,31 @@
Title : Markdown-Howto.md
===
## escape pipe (|) symbol while writing markdown tables
Bar &#124; xyz &#124; 23 &#124;
## Bolt FETT Schrift :
```PLainText
__bolt__ oder **fett**
```
__bolt__ oder **fett**
```none
~~Dieser Text ist durchgestrichen.~~ Dieser aber nicht.
```
~~Dieser Text ist durchgestrichen.~~ Dieser aber nicht.
Unterstrichen `<u>|</u>`
<u>Unterstrichen</u>
Tief- und Hochstellung kann jedoch HTML-Code genutzt werden wie z.B. `H<sub>2</sub>O` für H<sub>2</sub>O und `X<sup>2</sup>` für X<sup>2</sup>
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
Title : Markdown-Howto.md
===
## escape pipe (|) symbol while writing markdown tables
Bar &#124; xyz &#124; 23 &#124;
## Bolt FETT Schrift :
```PLainText
__bolt__ oder **fett**
```
__bolt__ oder **fett**
```none
~~Dieser Text ist durchgestrichen.~~ Dieser aber nicht.
```
~~Dieser Text ist durchgestrichen.~~ Dieser aber nicht.
Unterstrichen `<u>|</u>`
<u>Unterstrichen</u>
Tief- und Hochstellung kann jedoch HTML-Code genutzt werden wie z.B. `H<sub>2</sub>O` für H<sub>2</sub>O und `X<sup>2</sup>` für X<sup>2</sup>
#markdown #format
+9 -5
View File
@@ -1,5 +1,9 @@
#### Sharepoint Zugriff
AppID be01a550-c08a-41ac-b12c-d4878aeec599
Client Secret siehe Keepass
Client Secret ID e07f515f-9cb2-4b98-806c-82a3bc0ef1eb
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
#### Sharepoint Zugriff
AppID be01a550-c08a-41ac-b12c-d4878aeec599
Client Secret siehe Keepass
Client Secret ID e07f515f-9cb2-4b98-806c-82a3bc0ef1eb
+4
View File
@@ -1,3 +1,7 @@
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
# Zuhause
am 25.10.2024 :
+4
View File
@@ -1,3 +1,7 @@
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
#### To disable SIP, do the following:
+33 -29
View File
@@ -1,30 +1,34 @@
folgende Plugins habe ich installiert :
- Commander
- git
- Excalidraw
- Homepage
- LiveSyncServer. Habe ich nicht richtig zum laufen bekommen. Mehr Konflikte als alles andere
Was ist das den mit den Leerzeichen ?
Genutze Themes :
Typewriter
Um die Developer Console zu sehen :
View / Toogle DeveloperTools
#### How to link between vaults
Open up a note, right click on the tab, and select _Copy Obsidian URL_. It looks something like this: `obsidian://open?vault=o4e-06&file=00%20Obsidian%20for%20Everyone%20course%2F00-02%20First%20steps%20with%20Obsidian%2FWorking%20with%20multiple%20vaults`
In the other vault, type it out in this format:
```
[text here](paste the link here)
```
[Andere Vault](obsidian://open?vault=SecondBrain&file=Templates%2FNeue-Notiz)
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
folgende Plugins habe ich installiert :
- Commander
- git
- Excalidraw
- Homepage
- LiveSyncServer. Habe ich nicht richtig zum laufen bekommen. Mehr Konflikte als alles andere
Was ist das den mit den Leerzeichen ?
Genutze Themes :
Typewriter
Um die Developer Console zu sehen :
View / Toogle DeveloperTools
#### How to link between vaults
Open up a note, right click on the tab, and select _Copy Obsidian URL_. It looks something like this: `obsidian://open?vault=o4e-06&file=00%20Obsidian%20for%20Everyone%20course%2F00-02%20First%20steps%20with%20Obsidian%2FWorking%20with%20multiple%20vaults`
In the other vault, type it out in this format:
```
[text here](paste the link here)
```
[Andere Vault](obsidian://open?vault=SecondBrain&file=Templates%2FNeue-Notiz)
#obsidian #config
+4
View File
@@ -1,3 +1,7 @@
---
created: 2025-07-20T17:21
updated: 2025-07-20T17:21
---
I believe that this might be the easiest way to backup IOS with only Obsidian Git plugin.
![:exclamation:](https://forum.obsidian.md/images/emoji/apple/exclamation.png?v=12 ":exclamation:") You dont need to download any extra app on your devices.
@@ -1 +1,5 @@
---
created: 2025-07-20T17:20
updated: 2025-07-20T17:20
---
[Anleitung für den DOCKERCONTAINER](https://gist.github.com/gabeosx/93b9b099dec830706bab3ee2513eba8a)
+37 -33
View File
@@ -1,34 +1,38 @@
Each word in the search term is matched independently within each file. To search for an exact phrase, surround it with quotes, for example `"star wars"`. To search for quoted text within an exact phrase, you can _escape_ the quotes by adding a backslash (`\`) in front of the quote, for example `"they said \"hello\" to each other"`.
You can control whether to return files that contain _all_ the words in your search term, or _any_ of the words:
- `meeting work` returns files that contain both `meeting` and `work`.
- `meeting OR work` returns files that contain either `meeting` or `work`.
You can even combine the two in the same search term.
- `meeting work OR meetup personal` returns files for work meetings and personal meetups.
You can use parentheses to control the priority of each expression.
- `meeting (work OR meetup) personal` returns files that contain `meeting`, `personal`, and either `work` or `meetup`.
To exclude, or negate, a word from the search results, add a hyphen (`-`) in front of it:
- `meeting -work` returns files that contain `meeting` but not `work`.
You can exclude multiple expressions:
- `meeting -work -meetup` returns files that contain `meeting` but not `work` or `meetup`.
You can exclude a combination of expressions using parentheses:
- `meeting -(work meetup)` returns files that contain `meeting` but not _both_ `work` and `meetup`.
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
Each word in the search term is matched independently within each file. To search for an exact phrase, surround it with quotes, for example `"star wars"`. To search for quoted text within an exact phrase, you can _escape_ the quotes by adding a backslash (`\`) in front of the quote, for example `"they said \"hello\" to each other"`.
You can control whether to return files that contain _all_ the words in your search term, or _any_ of the words:
- `meeting work` returns files that contain both `meeting` and `work`.
- `meeting OR work` returns files that contain either `meeting` or `work`.
You can even combine the two in the same search term.
- `meeting work OR meetup personal` returns files for work meetings and personal meetups.
You can use parentheses to control the priority of each expression.
- `meeting (work OR meetup) personal` returns files that contain `meeting`, `personal`, and either `work` or `meetup`.
To exclude, or negate, a word from the search results, add a hyphen (`-`) in front of it:
- `meeting -work` returns files that contain `meeting` but not `work`.
You can exclude multiple expressions:
- `meeting -work -meetup` returns files that contain `meeting` but not `work` or `meetup`.
You can exclude a combination of expressions using parentheses:
- `meeting -(work meetup)` returns files that contain `meeting` but not _both_ `work` and `meetup`.
#obsidian #howto
+10 -6
View File
@@ -1,6 +1,10 @@
In den Einstellungen muss man sie erstmal vergeben
| Öffnen der täglichen Notiz (heute) | **strg + shift + d** |
| ---------------------------------- | -------------------- |
| | |
---
created: 2025-07-20T17:21
updated: 2025-07-20T17:21
---
In den Einstellungen muss man sie erstmal vergeben
| Öffnen der täglichen Notiz (heute) | **strg + shift + d** |
| ---------------------------------- | -------------------- |
| | |
+14 -14
View File
@@ -1,16 +1,16 @@
---
---
created: 2025-07-07T12:45
updated: 2025-07-14T09:45
---
##### DNS Name in Cloudflare angelegt :
oc.ralfkoop.de
collabora.ralfkoop.de
wopiserver.ralfkoop.de
VM 117 auf Proxmox
192.168.132.18
rko
2 x 98....
updated: 2025-07-20T17:22
---
##### DNS Name in Cloudflare angelegt :
oc.ralfkoop.de
collabora.ralfkoop.de
wopiserver.ralfkoop.de
VM 117 auf Proxmox
192.168.132.18
rko
2 x 98....
OpenCloud 3.1.0+7d6bc2a48
+26 -22
View File
@@ -1,23 +1,27 @@
### Übertragen / Sichern von Kategorien in Outlook
1. Notiz erstellen,
2. Alle Kategorien dieser Notiz zuordnen
3. Notiz exportieren (in einen Ordner im Explorer ziehen)
4. Dort ensteht dann eine MSG Datei
Import :_
1. Notizen Ordner öffnen
2. Notiz aus Explorer in den Ordner ziehen
3. Klicken Sie mit der rechten Maustaste auf das Postfach
4. Datendateieigenschaften auswählen
5. Dort auf Schaltfläche Aufrüsten zu Farbkategorien klicken
6. Dann werden alle Kategorien wieder importiert
---
created: 2025-07-20T17:21
updated: 2025-07-20T17:21
---
### Übertragen / Sichern von Kategorien in Outlook
1. Notiz erstellen,
2. Alle Kategorien dieser Notiz zuordnen
3. Notiz exportieren (in einen Ordner im Explorer ziehen)
4. Dort ensteht dann eine MSG Datei
Import :_
1. Notizen Ordner öffnen
2. Notiz aus Explorer in den Ordner ziehen
3. Klicken Sie mit der rechten Maustaste auf das Postfach
4. Datendateieigenschaften auswählen
5. Dort auf Schaltfläche Aufrüsten zu Farbkategorien klicken
6. Dann werden alle Kategorien wieder importiert
#Outlook #howto
+4
View File
@@ -1,3 +1,7 @@
---
created: 2025-07-20T17:21
updated: 2025-07-20T17:21
---
+11 -7
View File
@@ -1,8 +1,12 @@
### Vorsichtig bei Änderungen an NVME's
im System und sei es auch "nur" eine neue zusätzliche hinzuzufügen, kann es passieren das die erste nicht mehr geht.
Aktuelle einzige Lösung :
Vorher die NVME leeren (verschieben der Disk's)
Neue Einbauen und auf der ersten den Storage neu erstellen.
---
created: 2025-07-20T17:21
updated: 2025-07-20T17:21
---
### Vorsichtig bei Änderungen an NVME's
im System und sei es auch "nur" eine neue zusätzliche hinzuzufügen, kann es passieren das die erste nicht mehr geht.
Aktuelle einzige Lösung :
Vorher die NVME leeren (verschieben der Disk's)
Neue Einbauen und auf der ersten den Storage neu erstellen.
Ich suche aber noch weiter !!!!
+8 -8
View File
@@ -1,10 +1,10 @@
---
---
created: 2024-06-20T10:00
updated: 2025-05-19T09:03
---
Hier sollen alle Information zu Python rein
IOS \"Python Editor\" im Appstore um Python zu schreiben
updated: 2025-07-20T17:22
---
Hier sollen alle Information zu Python rein
IOS \"Python Editor\" im Appstore um Python zu schreiben
#programmieren
+9 -9
View File
@@ -1,10 +1,10 @@
---
---
created: 2025-04-30T17:21
updated: 2025-04-30T17:22
---
Ein Tool zum verwalten :
https://www.youtube.com/watch?v=qh98qOND6MI
Name : uv
updated: 2025-07-20T17:21
---
Ein Tool zum verwalten :
https://www.youtube.com/watch?v=qh98qOND6MI
Name : uv
+22 -18
View File
@@ -1,18 +1,22 @@
### USB Keyboard Mouse
Wenn nach dem Booten beides nicht geht, kann man im Grub Menue folgende Änderungen machen :
Beim Anzeigen vom Grub drückt man die Taste "e"
Danach muss man in einer Zeile wo das wort quiet steht dahinter alles löschen und dann den Wert "qubes.skip_autostart" eintragen.
Dann kann man mit F10 oder STRG +x deb Rechner Booten.
Dadurch wird der Qube sys-usb nicht automatisch gestartet und man kann dann in den Settings des sys-usb Qubes Autostart deaktivieren.
#### Copy Text from one VM to dom:0 or to other VM :
In a Terminal do
```
qvm-run --pass-io <src-vm> 'cat /path/to/file_in_src_domain' > /path/to/file_name_in_dom0
qvm-run --pass-io personal 'cat /path/to/file_in_src_domain' > /path/to/file_name_in_dom0
```
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
### USB Keyboard Mouse
Wenn nach dem Booten beides nicht geht, kann man im Grub Menue folgende Änderungen machen :
Beim Anzeigen vom Grub drückt man die Taste "e"
Danach muss man in einer Zeile wo das wort quiet steht dahinter alles löschen und dann den Wert "qubes.skip_autostart" eintragen.
Dann kann man mit F10 oder STRG +x deb Rechner Booten.
Dadurch wird der Qube sys-usb nicht automatisch gestartet und man kann dann in den Settings des sys-usb Qubes Autostart deaktivieren.
#### Copy Text from one VM to dom:0 or to other VM :
In a Terminal do
```
qvm-run --pass-io <src-vm> 'cat /path/to/file_in_src_domain' > /path/to/file_name_in_dom0
qvm-run --pass-io personal 'cat /path/to/file_in_src_domain' > /path/to/file_name_in_dom0
```
+4
View File
@@ -1,3 +1,7 @@
---
created: 2025-07-22T07:35
updated: 2025-07-22T07:35
---
### Siehe hierzu folgende Seiten :
https://lernen.react-js.dev/
+10 -6
View File
@@ -1,7 +1,11 @@
um aus einer Tabele nur eine Spalte zu bekommen und dort dann auch nur jeweils jeden Eintrag nur einmal nimmt man folgende Abfrage :
```SQL
select DISTINCT componenttypename
FROM [dbo].[solutioncomponent]
```
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
um aus einer Tabele nur eine Spalte zu bekommen und dort dann auch nur jeweils jeden Eintrag nur einmal nimmt man folgende Abfrage :
```SQL
select DISTINCT componenttypename
FROM [dbo].[solutioncomponent]
```
Wenn dann zB mehrmals Workflow drin wäre, wird dieses aber nur einmal angezeigt ;-)
+8 -8
View File
@@ -1,9 +1,9 @@
---
---
created: 2025-03-28T09:29
updated: 2025-04-10T18:13
---
In Windows nach Änderungsdatum suchen :
`änderungsdatum: > 27.03.2025`
In Obsidian nach Änderungsdatum suchen :
updated: 2025-07-20T17:22
---
In Windows nach Änderungsdatum suchen :
`änderungsdatum: > 27.03.2025`
In Obsidian nach Änderungsdatum suchen :
+4
View File
@@ -1,3 +1,7 @@
---
created: 2025-07-20T17:21
updated: 2025-07-20T17:21
---
Synology Prod
Netzwerk
+28 -24
View File
@@ -1,25 +1,29 @@
um ein Backup der VM's zu machen gibt man folgenden Befehl in CMD (SSH) ein :
```bash
/var/packages/Virtualization/target/bin/vmm_backup_ova --dst=1backup --batch=1 --guests="DC" --retent=3
```
### Sync Client
Logs sind zu finden unter :
C:\Users\[user_name]\AppData\Local\SynologyDrive\log
### Backup Ordner auf der Synology :
nfsbackup ist auf dem ProxmoxServer eingebunden, um den BackupServer zu sichern
Die SynologyVM wird auf der ssd860(1TB) gesichert
lokalesbackup ist auf dem ProxmoxBackup Server eingebunden, um die restlichen VM's zu sichern
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
um ein Backup der VM's zu machen gibt man folgenden Befehl in CMD (SSH) ein :
```bash
/var/packages/Virtualization/target/bin/vmm_backup_ova --dst=1backup --batch=1 --guests="DC" --retent=3
```
### Sync Client
Logs sind zu finden unter :
C:\Users\[user_name]\AppData\Local\SynologyDrive\log
### Backup Ordner auf der Synology :
nfsbackup ist auf dem ProxmoxServer eingebunden, um den BackupServer zu sichern
Die SynologyVM wird auf der ssd860(1TB) gesichert
lokalesbackup ist auf dem ProxmoxBackup Server eingebunden, um die restlichen VM's zu sichern
#config #synology #technik #befehle
+4
View File
@@ -1,3 +1,7 @@
---
created: 2025-07-20T17:21
updated: 2025-07-20T17:21
---
### Windows
+4
View File
@@ -1,3 +1,7 @@
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
Schlüssel für Win11 64-bit arm :
ssoS3tYOH5savGO0
+22 -18
View File
@@ -1,19 +1,23 @@
### VSCode mit einem bestimmten Profile starten :
code --profile name
### Leerzeilen aus einer Datei löschen :
1. In the “Find” field, type: `^\s*$\n`
2. In the “Replace” field, leave it blank.
VSCODE LXC (Docker) Container auf dem Proxmox :
```
bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/misc/code-server.sh)"
```
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
### VSCode mit einem bestimmten Profile starten :
code --profile name
### Leerzeilen aus einer Datei löschen :
1. In the “Find” field, type: `^\s*$\n`
2. In the “Replace” field, leave it blank.
VSCODE LXC (Docker) Container auf dem Proxmox :
```
bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/misc/code-server.sh)"
```
#vscode #befehle #cmd #howto
+38 -34
View File
@@ -1,35 +1,39 @@
# VSCode Setting
#### **Extentions for markdown**
Draw IO
Foam
Git Graph
Git Hiostory
Markdown All in One
Markdown Editor   (Set as Default Editor with reopen with...)
Markdown Full Text Search
md-graph
Project Manager
Shortcut Menue Bar
Auto Open Preview
DEVKit c#
Depending on your platform, the user settings file is located here:
Windows %APPDATA%\Code\User\settings.json.
macOS $HOME/Library/Application Support/Code/User/settings.json
Linux $HOME/.config/Code/User/settings.json.
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
# VSCode Setting
#### **Extentions for markdown**
Draw IO
Foam
Git Graph
Git Hiostory
Markdown All in One
Markdown Editor   (Set as Default Editor with reopen with...)
Markdown Full Text Search
md-graph
Project Manager
Shortcut Menue Bar
Auto Open Preview
DEVKit c#
Depending on your platform, the user settings file is located here:
Windows %APPDATA%\Code\User\settings.json.
macOS $HOME/Library/Application Support/Code/User/settings.json
Linux $HOME/.config/Code/User/settings.json.
#vscode #config #settings
+32 -28
View File
@@ -1,29 +1,33 @@
Windows 7 Benutzerprofil
==========================
**Windows 7 Benutzerprofil kann nicht geladen werden**
So könnt ihr das Benutzerprofil unter Windows 7 wieder reparieren:
>1. Startet den PC neu und drückt beim Booten entweder **F8** oder **F5**, bevor der Windows-Startbildschirm erscheint (ist von PC zu PC unterschiedlich).
>1. Nun könnt ihr aus mehreren Optionen auswählen.
>1. [Startet den abgesicherten Modus](https://www.giga.de/downloads/microsoft-windows/tipps/abgesicherter-modus-in-windows-so-startet-man-den-pc-in-xp-vista-und-windows-7/).
![Image-1](Bilder\Windows7Benutzerprofil_1.png)
>[Startet hier den abgesicherten Modus. ](https://static.giga.de/wp-content/uploads/2016/11/windows-7-abgesicherter-modus.jpg)
>1. Wenn ihr im abgesicherten Modus seid und Windows hochgefahren ist, drückt ihr die Tasten **Windows + R**, um den Ausführen-Dialog zu öffnen.
>1. Tippt **regedit** ein und bestätigt mit der **Eingabetaste**.
>1. In der Registry navigiert ihr zu: **HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList**
>1. Hier seht ihr verschiedene Unterschlüssel. Sucht nach dem Schlüssel mit der Endung „.bak“. Das ist eure Benutzerprofil-Sicherung, die noch funktioniert.
>1. Löscht den gleichnamigen Schlüssel, der die bak-Endung NICHT hat.
>1. Benennt erst danach den bak-Schlüssel um, indem ihr die F2-Taste drückt und die Endung „.bak“ entfernt.
>1. Wählt den frisch umbenannten Unterschlüssel aus. Rechts klickt ihr doppelt auf den Eintrag **State**.
>1. Tippt bei Wert eine Null, also 0, ein und bestätigt mit **OK***.*
>1. Startet Windows 7 neu. Nun solltet ihr euch wieder anmelden können.
*Aus \<[https://www.giga.de/downloads/windows-7/tipps/loesung-windows-7-benutzerprofil-kann-nicht-geladen-werden/](https://www.giga.de/downloads/windows-7/tipps/loesung-windows-7-benutzerprofil-kann-nicht-geladen-werden/)&gt;*
[https://www.balena.io/etcher/](https://www.balena.io/etcher/)
Zum erstellen von Bootfähigen USBstickes
---
created: 2025-07-20T17:21
updated: 2025-07-20T17:21
---
Windows 7 Benutzerprofil
==========================
**Windows 7 Benutzerprofil kann nicht geladen werden**
So könnt ihr das Benutzerprofil unter Windows 7 wieder reparieren:
>1. Startet den PC neu und drückt beim Booten entweder **F8** oder **F5**, bevor der Windows-Startbildschirm erscheint (ist von PC zu PC unterschiedlich).
>1. Nun könnt ihr aus mehreren Optionen auswählen.
>1. [Startet den abgesicherten Modus](https://www.giga.de/downloads/microsoft-windows/tipps/abgesicherter-modus-in-windows-so-startet-man-den-pc-in-xp-vista-und-windows-7/).
![Image-1](Bilder\Windows7Benutzerprofil_1.png)
>[Startet hier den abgesicherten Modus. ](https://static.giga.de/wp-content/uploads/2016/11/windows-7-abgesicherter-modus.jpg)
>1. Wenn ihr im abgesicherten Modus seid und Windows hochgefahren ist, drückt ihr die Tasten **Windows + R**, um den Ausführen-Dialog zu öffnen.
>1. Tippt **regedit** ein und bestätigt mit der **Eingabetaste**.
>1. In der Registry navigiert ihr zu: **HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList**
>1. Hier seht ihr verschiedene Unterschlüssel. Sucht nach dem Schlüssel mit der Endung „.bak“. Das ist eure Benutzerprofil-Sicherung, die noch funktioniert.
>1. Löscht den gleichnamigen Schlüssel, der die bak-Endung NICHT hat.
>1. Benennt erst danach den bak-Schlüssel um, indem ihr die F2-Taste drückt und die Endung „.bak“ entfernt.
>1. Wählt den frisch umbenannten Unterschlüssel aus. Rechts klickt ihr doppelt auf den Eintrag **State**.
>1. Tippt bei Wert eine Null, also 0, ein und bestätigt mit **OK***.*
>1. Startet Windows 7 neu. Nun solltet ihr euch wieder anmelden können.
*Aus \<[https://www.giga.de/downloads/windows-7/tipps/loesung-windows-7-benutzerprofil-kann-nicht-geladen-werden/](https://www.giga.de/downloads/windows-7/tipps/loesung-windows-7-benutzerprofil-kann-nicht-geladen-werden/)&gt;*
[https://www.balena.io/etcher/](https://www.balena.io/etcher/)
Zum erstellen von Bootfähigen USBstickes
#windows, #technik, #benutzerprofile, #regedit
+14 -10
View File
@@ -1,10 +1,14 @@
#### WMIC
**Firewall Enable WMIC:**
netsh advfirewall firewall set rule group="Windows-Verwaltungsinstrumentation (WMI)" new enable=yes
wmic /node:192.168.11.81 COMPUTERSYSTEM
wmic /node:192.168.11.81 COMPUTERSYSTEM get username
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
#### WMIC
**Firewall Enable WMIC:**
netsh advfirewall firewall set rule group="Windows-Verwaltungsinstrumentation (WMI)" new enable=yes
wmic /node:192.168.11.81 COMPUTERSYSTEM
wmic /node:192.168.11.81 COMPUTERSYSTEM get username
+4
View File
@@ -1,3 +1,7 @@
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
#### Fix Boot Probleme
- bootrec /fixmbr
+10 -6
View File
@@ -1,6 +1,10 @@
**Oscdimg**
Oscdimg ist ein Befehlszeilentool, mit dem Sie eine Imagedatei (ISO) einer angepassten 32-Bit- oder 64-Bit-Version von Windows Preinstallation Environment (Windows PE) erstellen können
https://learn.microsoft.com/de-de/windows-hardware/manufacture/desktop/oscdimg-command-line-options?view=windows-11
---
created: 2025-07-20T17:21
updated: 2025-07-20T17:21
---
**Oscdimg**
Oscdimg ist ein Befehlszeilentool, mit dem Sie eine Imagedatei (ISO) einer angepassten 32-Bit- oder 64-Bit-Version von Windows Preinstallation Environment (Windows PE) erstellen können
https://learn.microsoft.com/de-de/windows-hardware/manufacture/desktop/oscdimg-command-line-options?view=windows-11
+20 -16
View File
@@ -1,17 +1,21 @@
## Git automatic message
in der Git config folgendes eintragen :
```Plaintext
[commit]
template = ~/.gitmessage
```
dann eine .gitmessage Datei in das Home des Users ablegen mit dem
Message Text der immer default genommen werden soll.
Wenn mal trotzdem eine andere Message verwenden werden soll, gibt man einfach wieder
mit der -m "" Obtion eine Message an.
Diesmal mit Auto-git aktiviert
und einer neuen Zeile
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
## Git automatic message
in der Git config folgendes eintragen :
```Plaintext
[commit]
template = ~/.gitmessage
```
dann eine .gitmessage Datei in das Home des Users ablegen mit dem
Message Text der immer default genommen werden soll.
Wenn mal trotzdem eine andere Message verwenden werden soll, gibt man einfach wieder
mit der -m "" Obtion eine Message an.
Diesmal mit Auto-git aktiviert
und einer neuen Zeile
#git, #automation
+15 -11
View File
@@ -1,11 +1,15 @@
Git key für GitHub.com
url = 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
Das ist min ssh https key für github
ralfk:dc179557eaedb1dd7eda0d1a38131b1afc1deead
Gitlab
## Tags
#git
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
Git key für GitHub.com
url = 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
Das ist min ssh https key für github
ralfk:dc179557eaedb1dd7eda0d1a38131b1afc1deead
Gitlab
## Tags
#git
+53 -49
View File
@@ -1,49 +1,53 @@
Einen eigenen KMS Server aufsetzen :
name: kms
services:
vlmcsd:
ports:
1688:1688
restart: always
container_name: vlmcsd
image: mikolatero/vlmcsd
Ein Docker Image per prtainer erstellen
Windows Client :
https://learn.microsoft.com/en-us/windows-server/get-started/kms-client-activation-keys?tabs=server2025%2Cwindows1110ltsc%2Cversion1803%2Cwindows81
Windows 10 W269N-WFGWX-YVC9B-4J6C9-T83GX (product key)
Windows 11 W269N-WFGWX-YVC9B-4J6C9-T83GX
slmgr /skms 192.168.132.19
slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX
slmgr /ato
slmgr /xpr
office 2024
https://config.office.com/deploymentsettings
https://www.microsoft.com/en-us/download/details.aspx?id=49117
cd c:\office2024
setup /configure configuration.xml
delete c:\office2024
Offcie 2024 Keys :
https://learn.microsoft.com/en-us/office/volume-license-activation/gvlks?redirectedfrom=MSDN#gvlks-for-office-ltsc-2024
Anleitung siehe hier :
https://www.youtube.com/watch?v=mI7E-0C1djs
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
Einen eigenen KMS Server aufsetzen :
name: kms
services:
vlmcsd:
ports:
1688:1688
restart: always
container_name: vlmcsd
image: mikolatero/vlmcsd
Ein Docker Image per prtainer erstellen
Windows Client :
https://learn.microsoft.com/en-us/windows-server/get-started/kms-client-activation-keys?tabs=server2025%2Cwindows1110ltsc%2Cversion1803%2Cwindows81
Windows 10 W269N-WFGWX-YVC9B-4J6C9-T83GX (product key)
Windows 11 W269N-WFGWX-YVC9B-4J6C9-T83GX
slmgr /skms 192.168.132.19
slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX
slmgr /ato
slmgr /xpr
office 2024
https://config.office.com/deploymentsettings
https://www.microsoft.com/en-us/download/details.aspx?id=49117
cd c:\office2024
setup /configure configuration.xml
delete c:\office2024
Offcie 2024 Keys :
https://learn.microsoft.com/en-us/office/volume-license-activation/gvlks?redirectedfrom=MSDN#gvlks-for-office-ltsc-2024
Anleitung siehe hier :
https://www.youtube.com/watch?v=mI7E-0C1djs
+4
View File
@@ -1,3 +1,7 @@
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
**Step 1:**
apt-get update -y && apt-get full-upgrade -y && apt-get dist-upgrade -y && apt autoremove -y && apt autoclean
+4
View File
@@ -1,3 +1,7 @@
---
created: 2025-07-20T17:21
updated: 2025-07-20T17:21
---
# vscode-extentions
- Foam