Skip to content

Instantly share code, notes, and snippets.

View yodaluca23's full-sized avatar

Luca yodaluca23

View GitHub Profile
@yodaluca23
yodaluca23 / DiscordAppleStoreAppUpdateNotif.py
Last active October 3, 2024 00:58
Discord Webhook Ping when Apple AppStore App update
# Thank you to https://github.com/asdfzxcvbn/update-notifier for figuring out how to force the iTunes API, to not use cache.
import os
import requests
import subprocess
import json
# Configurations
version_file = "app_version.txt" # The text file where the version number will be saved will be prefixed with the apps BundleID
webhook_url = "DISCORDWEBHOOK" # Your Discord webhook URL
app_bundleID = "com.google.ios.youtube" # The BundleID for the app you want updates for. You can get the BundleID from here https://armconverter.com/appinfo
@yodaluca23
yodaluca23 / Discord Sideloadly Patcher.ps1
Last active December 31, 2024 00:01
Patch a Discord IOS App file to have shorter paths to be used with Sideloadly on Windows
<#
Version 3
To run this script, open a new Command Prompt session and execute the following command:
powershell -ExecutionPolicy Bypass -File "D:\Path\To\Your\Discord Sideloadly Patcher.ps1" -ipaFilePath "D:\Path\To\Your\Discord.ipa"
Replace "D:\Path\To\Your\Discord Sideloadly Patcher.ps1" with the full path to this script, and "D:\Path\To\Your\Discord.ipa" with the full path to your Discord IPA file.
Using -ExecutionPolicy Bypass allows the script to run without changing the execution policy for the session, ensuring successful execution.
#>