- Configuration file: https://mesu.apple.com/assets/macos/com_apple_MobileAsset_ComfortSoundsAssets/com_apple_MobileAsset_ComfortSoundsAssets.xml
- BrownNoise: https://updates.cdn-apple.com/2022/mobileassets/071-07162/1B06BBCE-6DFA-461A-9D6D-AF07A083F8AE/com_apple_MobileAsset_ComfortSoundsAssets/4bb1923264e25b69aef5fa39ef24f86892234298.zip
- Ocean: https://updates.cdn-apple.com/2022/mobileassets/071-07162/1B06BBCE-6DFA-461A-9D6D-AF07A083F8AE/com_apple_MobileAsset_ComfortSoundsAssets/64f6abedfc93e86dfea6c82d5b2d85a329c386f0.zip
- PinkNoise: https://updates.cdn-apple.com/2022/mobileassets/071-07162/1B06BBCE-6DFA-461A-9D6D-AF07A083F8AE/com_apple_MobileAsset_ComfortSoundsAssets/bbcd113d279425306e455af3d85da2afcf82c52b.zip
- Rain(Kings Mountain): https://updates.cdn-apple.com/2022/mobileassets/071-07162/1B06BBCE-6DFA-461A-9D6D-AF07A083F8AE/com_apple_MobileAsset_ComfortSoundsAssets/503021f5b60375a47fd7b91078008f33a09ca981.zip
- Stream(Cataract Falls): https://updates.cdn-app
Apple Software Update XML catalog: https://swcatalog.apple.com/content/catalogs/others/index-windows-1.sucatalog
As of 2023-12-14, direct downloading URLs of the individual installers:
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 | |
| ACTIVE_REPO_DIR="/etc/yum.repos.d" | |
| BACKUP_REPO_DIR="$ACTIVE_REPO_DIR/backup" | |
| STATUS_FILE="/etc/yum.repos.d/CENTOS7_EOL_REPO_URL_PATCHED.txt" | |
| CENTOS_VAULT_SERVER_BASE="https://mirrors.aliyun.com/centos-vault" | |
| EPEL_RPM_URL="https://mirrors.aliyun.com/epel-archive/7/x86_64/Packages/e/epel-release-7-14.noarch.rpm" | |
| EPEL_REPO="epel.repo" | |
| EPEL_VAULT_SERVER_BASE="https://mirrors.aliyun.com/epel-archive" |
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
| #!/usr/bin/env python3 | |
| """ | |
| JSON Flattener Tool | |
| Flattens JSON data by specified levels and exports to CSV or XLSX format. | |
| Each record becomes one row with flattened column names. | |
| Usage: | |
| python3 json_flattener.py input.json --output output.csv --levels 2 | |
| python3 json_flattener.py input.json --output output.xlsx --levels 3 --format xlsx |
OlderNewer