Chained XOR. To decrypt, XOR the nth byte with the key, XOR the key with that decrypted byte and repeat until the EOF mark is hit. Initial key is the integer 77.
These are the default keyboard shortcuts for Transcribe, organized by category.
| Space | Z | ; | . | , |
|---|---|---|---|---|
| Play | Play from marker (while held) | Play from current (while held) | Stop | Play/Pause |
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
| @echo off | |
| setlocal | |
| if "%~1"=="" ( ECHO Specify DNS server to verify, e.g. %~nx0 192.168.1.17 & GOTO :EOF) | |
| set DNSSERVER=%~1 | |
| REM To have this script run on user login: | |
| REM | |
| REM taskschd.msc | |
| REM Action, Create Basic Task | |
| REM Name: verify_htpc_pihole |
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
| export PS1='\033[0;37m\342\224\214\342\224\200\e[0;36m$(code=${?##0};echo ${code:+\033[0;37m[\033[0;31m\342\234\227\033[0;37m]\342\224\200})\033[0;37m[\e[0;33m\u\e[0;37m@\e[0;33m\h\e[0;37m]\342\224\200[\e[0;36m\A\e[0;37m]\342\224\200[\033[0;32m\w\033[0;37m]\n\033[0;37m\342\224\224\342\224\200[\033[0;34m\!\033[0;37m]\342\224\200\342\225\274 \033[0m' |
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
| @echo off | |
| setlocal | |
| REM Set codepage to UTF-8 | |
| chcp 65001 > NUL | |
| echo. | |
| REM Hidden ESC character on next line. | |
| set ESC= | |
| GOTO :MAIN |
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
| @ECHO OFF | |
| REM Burst a PDF Document into Single Pages using qpdf - https://github.com/qpdf/qpdf | |
| SETLOCAL | |
| IF "%~1"=="" ( | |
| ECHO PDF_filename | |
| ECHO Example: %~nx0 document.pdf | |
| GOTO :EOF | |
| ) |
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
| $md5sum = Get-Content '.\test.md5' | Select-String -Pattern '^([0-9a-fA-F]+) ([ \*])(.+)' | ForEach-Object { $hash,$binary, $path = $_.Matches[0].Groups[1..3].Value; [PSCustomObject] @{Hash=$hash; Binary=[Bool]($binary -eq '*'); Path=$path } } | |
| $md5sum | ForEach-Object { if ($_.Hash.ToLower() -eq (Get-FileHash $_.Path -Algorithm MD5 -ErrorAction SilentlyContinue -ErrorVariable HashError).Hash) { "$($_.Path): OK" } else { if ($HashError) { "$HashError`n$($_.Path): FAILED open or read" } else { "$($_.Path): FAILED" } } } |
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 | |
| Scoop Bootstrap Script Generator | |
| .DESCRIPTION | |
| Create a scoop bootstrap, copying config from an existing installation. | |
| .EXAMPLE | |
| PS C:\> ./scoop-bootstrap-generator.ps1 | Out-File scoop-bootstrap.ps1 |
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
| # Powershell: No Rules calendar (ICAL import) | |
| [cmdletbinding()] # Support -Verbose | |
| Param( | |
| # Google Calendar URL. | |
| # Calendar Settings > Calendar Details > Calendar Address > ICAL | |
| # Settings for my calendars > [Calendar Name] > Integrate calendar > Public address in iCal format | |
| [string]$ICalUrl = 'https://calendar.google.com/calendar/ical/FILL_THIS_IN/public/basic.ics', | |
| # If False, then only events after the current day are displayed. | |
| [switch]$AllEvents = $False, |
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
| @echo off | |
| REM Normalize mp3 and flac files in currently directory using ffmpeg-normalize | |
| REM https://github.com/slhck/ffmpeg-normalize/ | |
| setlocal | |
| goto :main | |
| :normalize_file | |
| setlocal |