install termux from F-Droid.
apt update| ## Updated on June 16 2020 | |
| ## Blahdns xiaomi blacklist.txt | |
| ## Tested from Taiwan, Japan, Singapore IP (Mi Home, Mifit app) | |
| tp.hd.mi.com | |
| api.ad.xiaomi.com | |
| data.mistat.india.xiaomi.com | |
| data.mistat.xiaomi.com | |
| app-analytics-us.huami.com | |
| app.chat.global.xiaomi.net |
| module Adamopt | |
| # This is a module implementing vanilla Adam (https://arxiv.org/abs/1412.6980). | |
| export Adam, step! | |
| # Struct containing all necessary info | |
| mutable struct Adam | |
| theta::AbstractArray{Float64} # Parameter array | |
| loss::Function # Loss function | |
| grad::Function # Gradient function |
| REGEDIT4 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet\FirefoxPortable.exe] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet\FirefoxPortable.exe\shell] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet\FirefoxPortable.exe\shell\open] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet\FirefoxPortable.exe\shell\open\command] |
| from get_info import save_infos | |
| from get_imgs import save_imgs | |
| if __name__ == '__main__': | |
| pth = 'xkcd_save' | |
| save_infos(pth) | |
| print() | |
| save_imgs(pth) |
This is a living document. Everything in this document is made in good faith of being accurate, but like I just said; we don't yet know everything about what's going on.
Update: I've disabled comments as of 2025-01-26 to avoid everyone having notifications for something a year on if someone wants to suggest a correction. Folks are free to email to suggest corrections still, of course.
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # This script downloads the official Cursor Agent installer, programmatically | |
| # modifies it for Android/Termux compatibility, and then executes it. | |
| # It uses `sed` and temporary files to inject logic, making it resilient to | |
| # version changes in the official installer. | |
| # --- Helper Functions --- | |
| step() { echo -e "\033[0;34m▸\033[0m $1"; } |