Neue Seiten
Aus MattWiki
- 09:51, 6. Jan. 2025 Disable Microsoft Recall (Windows) (Versionen | bearbeiten) [532 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article shows how to check the status of Microsoft Recall in Windows and how to deactivate or activate it if necessary. = Prerequisite = Open Terminal as Administrator: * Search for '''cmd.exe''' in Start Menu * Click on '''Run as Administrator''' == Microsoft Recall == === Check Status === Dism /Online /Get-Featureinfo /Featurename:Recall === Disable === Dism /Online /Disable-Feature /Featurename:Recall === Enable === Dism /Online /Enable…“) Markierung: Visuelle Bearbeitung
- 20:18, 30. Nov. 2024 Python Basics (Versionen | bearbeiten) [1.630 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article contains my notes on the Python programming language as of Python 3.x. == Strings == === F-Strings === <syntaxhighlight lang="python3"> a = "Munich" b = "Frankfurt" c = "Berlin" # f-String print(f"We are doing a road trip from {a} through {b} to {c}") </syntaxhighlight> === Template Strings === <syntaxhighlight lang="python3"> a = "Munich" b = "Frankfurt" c = "Berlin" # Template string template = "We are doing a road trip from {} throug…“) Markierung: Visuelle Bearbeitung
- 20:23, 16. Nov. 2024 Windows 11 Performance Tweaks (Versionen | bearbeiten) [1.050 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article collects different tweaks to improve Windows 11 performance without compromising it's features. == Visual Performance Settings == Right click on Windows Icon and then click: System → Extended Settings → Extended → Performance → Settings → Visual effects Disable following options: * Animation on minimizing and maximizing of windows * Animations on task bar * Window shadows * Mouse shadows * Menu items on click (DE: Menüelemente n…“) Markierung: Visuelle Bearbeitung
- 16:46, 10. Nov. 2024 Git Combine Two Repositories (Versionen | bearbeiten) [3.491 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article describes how to combine two Git repositories in a new repository while keeping histories of both of the repositories intact. == Prepare the New Repository == Create and initialize a new repository where you will combine both repositories.<syntaxhighlight lang="bash"> # Create a new directory and initialize a Git repository mkdir combined-repo cd combined-repo git init </syntaxhighlight> == Add First Repository (Repo 1) as a Remote and Pull…“) Markierung: Visuelle Bearbeitung
- 15:41, 4. Okt. 2024 Streuselkuchen (Versionen | bearbeiten) [1.665 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „Zutaten Grundteig: 500g Mehl 1 Würfel Hefe 80g Zucker 220ml Milch (Lauwarm) 0,5 TL Salz 80g Butter 1 Ei Zutaten Streusel 100g Zucker 100g Butter (weich) 200g Dinkelmehl 1 Prise Zimt oder 1 Päckchen Vanillezucker Für ein Backblech Menge mal 1,7 (?)“)