- 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
| # ╔══════════════════════════════════════════════════════════════════════════╗ | |
| # ║ changelog.nu – produce collapsible-Markdown release notes from jj log ║ | |
| # ║ ║ | |
| # ║ Usage: nu changelog.nu [<revset>] ║ | |
| # ║ – <revset> always appends "~empty()" to drop empty commits. ║ | |
| # ║ Needs: Nushell 0.91+ • jj 0.24+ ║ | |
| # ╚══════════════════════════════════════════════════════════════════════════╝ | |
| export def main [revset: string] { |
Extracted from: https://github.com/kurokirasama/nushell_sublime_syntax with the fix from kurokirasama/nushell_sublime_syntax#4
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
| # repl-env.nu | |
| # example: | |
| # > let repl_env = repl-env setup-env | |
| # > $env.repl-env = ($repl_env.repl-env | upsert max_length 5) | |
| # > $env.config = $repl_env.config | |
| # | |
| # use the `@` alias to view the last commands output (or use the repl-env get-history command) | |
| # | |
| # $env.repl-env will look like: | |
| # { |
NoteAfterNote-10
Testing: Termux, vmtest, and QEMU
Published: June 19, 2024
Link: https://gist.github.com/NoteAfterNote/7614b0137ac6959e3bba35df66eaa75a
Updated: November 22, 2024
- Remove
* -drive if=none,id=vm,format=raw,file=$VM -device virtio-blk-pci,id=vmvirt1,drive=vm
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
| #Install Github CLI | |
| # Set the scopes used for the token | |
| gh auth login -s read:packages,write:packages,delete:packages | |
| # Read the token in and use it in the docker login call | |
| gh auth token | docker login ghcr.io -u username --password-stdin |
This is an overview of how I configured my system to play a sound when a USB device (such as a flash drive) is plugged in.
- Linux install with
udevandsystemd. - Root access.
- A utility to play sounds (I used
aplay). - Sounds to play.
Using the tool aplay (found in the Arch package alsa-utils), it is easy to play an audio file: aplay insert.wav
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
| #!/bin/bash | |
| gdb -p "$1" -batch -ex 'set {short}$rip = 0x050f' -ex 'set $rax=231' -ex 'set $rdi=0' -ex 'cont' |
NewerOlder
