In the terminal, run
git clone https://github.com/bmaltais/kohya_ss.git
cd kohya_ss
# Patch these files into top level/root project folder
# Then run the next command
bash ./macos.sh
| // An HTTP server that connects to the AltServer mail plugin | |
| // on the local host and serves the anisette data in JSON form. | |
| // | |
| // Requires macOS 10.12+ and Swift 5.5+ | |
| // | |
| // Server usage: swift aniserve.swift -p <port:6969> -d <endpoint:"anisette"> | |
| // | |
| // Client usage: curl http://localhost:6969/anisette | |
| // | |
| import Foundation |
Run the following command on your terminal to install Homebrew. Homebrew is a package manager for Macs and is used to install useful development tools and software.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install --cask anaconda to install AnacondaUPDATED: 2025-11-23
The easiest way to "convert" MKV to MP4, is to copy the existing video and audio streams and place them into a new container. This avoids any encoding task and hence no quality will be lost, it is also a fairly quick process and requires very little CPU power. The main factor is disk read/write speed.
With ffmpeg this can be achieved with -c copy. Older examples may use -vcodec copy -acodec copy which does the same thing.
These examples assume ffmpeg is in your PATH. If not just substitute with the full path to your ffmpeg binary.
| import base64 | |
| import struct | |
| import datetime | |
| import binascii | |
| from urllib.parse import quote_plus | |
| # pip install pycryptodomex | |
| from Cryptodome import Random | |
| from Cryptodome.Cipher import AES |
Here is a high level overview for what you need to do to get most of an Android environment setup and maintained.
Here the SDK is under /usr/local/share/android-sdk because I may switch to a different Catalina user in the future, but it works fine under /Users/<your_user>/Library/Android/sdk as well.
See for brew, python3 and NodeJS on nvm see gist https://gist.github.com/agrcrobles/3d945b165871c355b6f169c317958e3e
/Applicationsresign.sh scriptCODE_SIGN_IDENTITY_HERE with your code signing identity from Xcode (see here)chmod +x SCRIPT_PATH in Terminalresign.sh, passing in the wrapped app to resign ./resign.sh /Applications/Snapchat.app| import jwt from "jsonwebtoken"; | |
| import uuid from "uuid"; | |
| import config from "../../../config"; | |
| import { DeviceCheckService, DeviceCheckParams } from "./DeviceCheckService"; | |
| import BaseService from "./BaseService"; | |
| export class AppleDeviceCheckService extends BaseService implements DeviceCheckService { |