./ad2mf.sh aosp.dependencies
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 -x | |
# make_arm64_rpi_kernel_debs.sh | |
# Builds arm64 debian packages from the CURRENT rpi firmware repository kernel which is installed by: | |
# sudo rpi-update | |
# This runs on an arm64 host with arm64 compilation tools... | |
# or with some sort of cross-compilation setup. | |
# Debs are put in $workdir/build | |
# | |
# This will NOT work in Raspbian unless you have an arm64 compilation | |
# environment setup. Appears to work on |
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
import re | |
from os.path import join | |
from os import walk, rename | |
FOLDER_PATH = join('PATH_TO', 'DIR_NAME') | |
for path, subdirs, files in walk(FOLDER_PATH): | |
for i, name in enumerate(files): | |
fixed = re.sub(r' \(.+\)', '', name) | |
print('{} / {}'.format(i + 1, len(files))) |
https://developers.cloudflare.com/r2/platform/pricing/
up to 10,000,000 read operations + $0.36 per 1,000,000 operations
$3.60 free
up to 1,000,000 write operations + $4.50 per 1,000,000 operations
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
$API_TOKEN = "<api-token>" | |
$ZONE_ID = "<zone-id>" | |
$baseUrl = "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records" | |
$headers = @{ | |
'Authorization' = "Bearer $API_TOKEN" | |
'Content-Type' = "application/json" | |
} |
This is a rough outline on how to setup altserver-linux
on the 🍓🍰. Wifi refreshing is enabled through the use of netmuxd
, which acts as a proxy from AltServer
to the iDevice (replaces/enhances usbmuxd
).
- https://www.reddit.com/r/jailbreak/comments/wa4z2z/tutorial_altstore_wifi_refresh_on_raspberry_pi/ (the OG)
- https://www.reddit.com/r/AltStore/comments/zvcdzv/finally_a_working_raspberry_pi_4_altserver_for/ (copied the OG and enhanced some aspects)
OlderNewer