Discover gists
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 LoadAssembly { | |
| [CmdletBinding()] | |
| param ( | |
| [Parameter(Mandatory=$true, ValueFromPipeline=$true)] | |
| [string[]]$asmNames, | |
| [string]$baseDir = $PSScriptRoot | |
| ) | |
| begin { | |
| $domain = [System.AppDomain]::CurrentDomain | |
| [Reflection.Assembly[]]$asms = $domain.GetAssemblies() |
These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.
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 enableextensions | |
| title Reset AnyDesk | |
| reg query HKEY_USERS\S-1-5-19 >NUL || (echo Please Run as administrator.& pause >NUL&exit) | |
| chcp 437 | |
| call :stop_any | |
| del /f "%ALLUSERSPROFILE%\AnyDesk\service.conf" | |
| del /f "%APPDATA%\AnyDesk\service.conf" | |
| copy /y "%APPDATA%\AnyDesk\user.conf" "%temp%\" | |
| rd /s /q "%temp%\thumbnails" 2>NUL | |
| xcopy /c /e /h /r /y /i /k "%APPDATA%\AnyDesk\thumbnails" "%temp%\thumbnails" |
name: camoufox-browser description: "Use when installing or driving Camoufox for stealth browser automation, scraping, or anti-bot sites. Covers pip install, browser fetch, system deps, headed/headless launch, and product scraping." version: 1.0.0 author: Tony Tran license: MIT platforms: [linux, macos, windows] metadata: hermes: tags: [camoufox, playwright, browser, scraping, stealth, fingerprint, anti-bot]
- Visit fmhy.net/android-iosguide#ios-ipas for more sources.
- Sideloading Guide: https://rentry.co/sideloadingguide, https://ios.cfw.guide/sideloading-apps/
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
| #define WIN32_LEAN_AND_MEAN | |
| #include <tchar.h> | |
| #include <stdint.h> | |
| #include <windows.h> | |
| #include <shellapi.h> | |
| COLORREF rgbText = 0xffffff; | |
| LPTSTR pchFontName = _T("Times New Roman"); | |
| INT iFontSizePt = 24; | |
| LPTSTR pchText = _T("InstallSword Wizard"); |
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
| // MOTU Ultralite-mk5 API Bridge | |
| // Author: mino | |
| // Date: 2023-02-22 | |
| // License: MIT | |
| // | |
| // Description: | |
| // ------------ | |
| // I was looking for a easy way to mute and umute my main speakers via a Stream Deck button on the MOTU Ultralite-mk5. | |
| // Unfortunately, Motu does not provide an HTTP API for this series, this feature is only available on the AVB devices. | |
| // But with a bit of tinkering and reverse engineering of the Motu CueMix 5 app, it is possible to understand the used protocols and to send arbitrary commands. |