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
| <mso:cmd app="Word" dt="1" /><mso:customUI xmlns:mso="http://schemas.microsoft.com/office/2009/07/customui"><mso:ribbon><mso:qat><mso:sharedControls><mso:control idQ="mso:AutoSaveSwitch" visible="true"/><mso:control idQ="mso:FileOpenUsingBackstage" visible="false" insertBeforeQ="mso:FileNewDefault"/><mso:control idQ="mso:FileSave" visible="true" insertBeforeQ="mso:FileNewDefault"/><mso:control idQ="mso:FileSendAsAttachment" visible="false" insertBeforeQ="mso:FileNewDefault"/><mso:control idQ="mso:FilePrintQuick" visible="false" insertBeforeQ="mso:FileNewDefault"/><mso:control idQ="mso:PrintPreviewAndPrint" visible="false" insertBeforeQ="mso:FileNewDefault"/><mso:control idQ="mso:ReadAloud" visible="false" insertBeforeQ="mso:FileNewDefault"/><mso:control idQ="mso:Undo" visible="true" insertBeforeQ="mso:FileNewDefault"/><mso:control idQ="mso:RedoOrRepeat" visible="true" insertBeforeQ="mso:FileNewDefault"/><mso:control idQ="mso:TableDrawTable" visible="false" insertBeforeQ="mso:FileNewDefault"/><mso:control idQ= |
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
| [ \t]*\(\d+\)[ \t]* |
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
| Get-ChildItem | Where-Object Name -match '^(?<d>\d{2})\.(?<m>\d{2})\.(?<y>\d{4}) (?<h>\d{2})\.(?<min>\d{2}) ' | Rename-Item -NewName {('{0}-{1}-{2}_{3}.{4} ' -f $matches.y,$matches.m,$matches.d,$matches.h,$matches.min) + $($_.Name.Substring($matches[0].Length))} |
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
| Get-ChildItem -LiteralPath $PWD -Recurse -File | Move-Item -Destination { Join-Path (Convert-Path $PWD) ( $_.FullName.Substring((Convert-Path $PWD).Length + 1) -replace '[/\\]', '_' ) } |
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
| yt-dlp --cookies "$env:USERPROFILE\Videos\www.youtube.com_cookies.txt" --skip-download --write-subs --sub-langs "$($(if ($args.Count -ge 2 -and $args[1]) { $args[1] } else { 'en' })).*" --remote-components ejs:github "$args[0]" |
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
| from PIL import ImageGrab, Image | |
| import pytesseract | |
| import sys | |
| import os | |
| data = ImageGrab.grabclipboard() | |
| if data is None: | |
| sys.exit("No image in clipboard.") |
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
| (() => { | |
| const targets = [window, document, document.documentElement, document.body].filter(Boolean); | |
| const eventTypes = ['keydown', 'keypress', 'keyup']; | |
| const backup = []; | |
| for (const t of targets) { | |
| backup.push({ | |
| target: t, | |
| onkeydown: t.onkeydown, | |
| onkeypress: t.onkeypress, |
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
| https://reportcontent.google.com/forms/rtbf?hl=de | |
| https://support.google.com/legal/contact/lr_legalother?product=geo | |
| https://support.google.com/youtube/contact/legal_complaint legal@support.youtube.com | |
| https://www.facebook.com/help/contact/319149701968527 | |
| https://www.tiktok.com/legal/report/feedback legal@tiktok.com | |
| https://www.booking.com/content-moderation-policy/reporting-content-on-booking.de.html notices@booking.com |
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]$InputDir = '.', | |
| [string]$OutputFile = 'convolut.md' | |
| ) | |
| Set-StrictMode -Version Latest | |
| $ErrorActionPreference = 'Stop' | |
| function Convert-ToMarkdownText { | |
| param( |
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
| #!/usr/bin/env bash | |
| # Prompt for inputs | |
| read -rp "Server: " server | |
| read -rp "Domain (leave empty if none): " domain | |
| read -rp "Username: " user | |
| read -rsp "Password: " password | |
| echo | |
| # Base command |
NewerOlder