-
APKEditor will merge split APKs:
apkeditor m -i <folder_with_split_apks>- I have a Scoop bucket containing it: https://github.com/qwerty12/scoop-alts
-
The only tool worth using to inject the Frida gadget is ksg97031's
frida-gadget -
The right argument to
frida(.exe) to target the gadget is-n Gadget- I was mistakenly using
-finstead which I guess worked at some point (ref. for the fix)...
- I was mistakenly using
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://gist.githubusercontent.com/qwerty12/e0cffa13024e17f10db33a0142e07319/raw/jellyfin.css */ | |
| /* --- Base: https://github.com/CTalvio/Ultrachromic --- */ | |
| @import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/fixes.css'); | |
| @import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/base.css'); | |
| @import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/accentlist.css'); | |
| @import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/rounding.css'); | |
| @import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/smallercast.css'); | |
| @import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/episodelist/episodes_compactlist.css'); | |
| @import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/header/header_transparent.css'); | |
| @import url('https://cdn.jsdelivr.net/gh/CTalvio/Ultrachromic/login/login_frame.css'); |
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
| ;@Ahk2Exe-ConsoleApp | |
| #NoEnv | |
| #NoTrayIcon | |
| AutoTrim Off | |
| SetBatchLines, -1 | |
| ListLines, Off | |
| #SingleInstance ignore | |
| SetWorkingDir %A_ScriptDir% | |
| ; https://docs.jellyseerr.dev/getting-started/buildfromsource#installation-1 |
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
| //go:build windows | |
| // +build windows | |
| package main | |
| import ( | |
| "unsafe" | |
| "syscall" | |
| "os/user" |
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
| // +build windows | |
| /* | |
| Parts derived from | |
| https://github.com/hallazzang/go-windows-programming | |
| https://github.com/GameXG/gowindows | |
| https://stackoverflow.com/a/37911789 | |
| */ | |
| package 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
| #!/data/data/com.termux/files/usr/bin/bash | |
| if [ -z "${1:-}" ]; then | |
| exit 1 | |
| fi | |
| url_is_supported() { | |
| REPLY="" | |
| declare -A arr | |
| case "$1" in |
This short guide is only possible because of the Transmission, OpenSSL, curl and CMake developers' work.
Thanks to https://github.com/transmission/transmission-release-scripts/blob/master/build-windows.ps1 and https://build.transmissionbt.com/job/trunk-win32/arch=x64,label=pepito-win10/lastSuccessfulBuild/consoleText for showing the way.
The Transmission Project itself already provides [https://transmissionbt.com/download/](official builds w/ installer) which I install myself to have, among other things, an entry in the Windows services database for transmission-daemon.
I build my own transmission-daemon for these excellent patches:
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
| # List all possible power config GUIDs in Windows | |
| # Run: this-script.ps1 | Out-File powercfg.ps1 | |
| # Then edit and run powercfg.ps1 | |
| # (c) Pekka "raspi" Järvinen 2017 | |
| # https://stackoverflow.com/a/22156833 | |
| if (-not ([System.Management.Automation.PSTypeName]'PowrProf').Type) | |
| { | |
| Add-Type -TypeDefinition @" | |
| using System; |
NewerOlder