This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| von <$13>, <$15>, <$16>, <$12> | |
| – Kläger – | |
| Verfahrensbevollmächtigte: <$23>, <$25>, <$26> | |
| gegen | |
| <$33>, <$35>, <$36>, <$32> | |
| – Beklagte – |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| param([string]$path, [string]$filter) | |
| $stack = [System.Collections.Generic.Stack[string]]::new() | |
| $stack.Push($path) | |
| while ($stack.Count) { | |
| $dir = $stack.Pop() | |
| try { | |
| [System.IO.Directory]::EnumerateFiles($dir, $filter) | |
| foreach ($subDir in [System.IO.Directory]::EnumerateDirectories($dir)) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| Lists UI Automation elements of all open top-level windows (incl. name, value, position). | |
| This is the WPF/XAML counterpart to Get-HwndEnumerator.ps1: WPF draws its controls into a | |
| single HWND, so EnumChildWindows returns nothing useful. UI Automation walks the logical | |
| tree instead. | |
| .PARAMETER TitleFilter | |
| Substring filter for the window name (case-insensitive). Empty = all windows. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function () { | |
| var stdin; | |
| var stdout; | |
| var stderr; | |
| var line; | |
| var command; | |
| var buffer; | |
| var inBlock; | |
| var globalEval; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| Lists HWNDs of all open top-level windows and their controls (incl. text and control IDs). | |
| .PARAMETER TitleFilter | |
| Substring filter for the window title (case-insensitive). Empty = all windows. | |
| .PARAMETER ClassFilter | |
| Wildcard filter (like -like) for the control class, e.g. "Edit", "*Edit*", "TMemo". | |
| Empty/"*" = all classes. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| param( | |
| [string]$Adressnummer, # Index 0: Adressnummer (zeigt "neu" bei Neuanlage) | |
| [string]$LKZ, # Index 1: LKZ (Länderkennzeichen, Combo-Text) | |
| [string]$Anrede, # Index 2: Anrede (Combo-Text, z. B. "1 - Herr") | |
| [string]$Bank, # Index 3: Konto - Bank | |
| [string]$BLZ, # Index 4: Konto - BLZ | |
| [string]$Kontonummer, # Index 5: Konto - Nummer | |
| [string]$Adresszeile1, # Index 6: 1. Adresszeile (Anredewort, z. B. "Herrn") | |
| [string]$BIC, # Index 7: Konto - BIC | |
| [string]$IBAN, # Index 8: Konto - IBAN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (New-Object -ComObject Shell.Application).Namespace('shell:::{679F85CB-0220-4080-B29B-5540CC05AAB6}').Items() | Select Path |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $wdFindStop = 0 | |
| $wdUpperCase = 1 | |
| try { | |
| # An bereits laufendes Word anbinden | |
| $word = [Runtime.InteropServices.Marshal]::GetActiveObject('Word.Application') | |
| $doc = $word.ActiveDocument | |
| if ($null -eq $doc) { | |
| throw 'Es ist kein aktives Word-Dokument geöffnet.' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Perplexity: Standardmäßig 'Suche' aktivieren | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Wählt automatisch die Option 'Suche' statt 'Computer' in der Perplexity-Oberfläche. | |
| // @author Du | |
| // @match https://www.perplexity.ai/* | |
| // @grant none | |
| // @run-at document-end | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width,initial-scale=1"> | |
| <!-- Настраивает масштаб страницы на мобильных устройствах. --> |
NewerOlder