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 | |
| set -e | |
| # go to https://store.rg-adguard.net/ | |
| # paste this in https://apps.microsoft.com/detail/9pktq5699m62 | |
| # find the entry that's named like "AppleInc.iCloud_*_x64_*.appx" | |
| # paste the link below | |
| ITUNES_URL="" | |
| # update these if you like (latest as of 04 sept 2025) |
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
| From d293b67993b1d020667e3a1d665409440f393f43 Mon Sep 17 00:00:00 2001 | |
| From: NotWadeGrimridge <wade@6942020.xyz> | |
| Date: Sat, 23 Aug 2025 18:17:51 +0530 | |
| Subject: [PATCH] feat: allow toggling sse for responses | |
| Signed-off-by: NotWadeGrimridge <wade@6942020.xyz> | |
| --- | |
| codex-rs/core/src/client.rs | 153 ++++++++++++++++-- | |
| codex-rs/core/src/config.rs | 12 ++ | |
| codex-rs/exec/src/lib.rs | 1 + |
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 -S uv --quiet run --script | |
| # /// script | |
| # requires-python = ">=3.13" | |
| # dependencies = [ | |
| # "beautifulsoup4", | |
| # "curl-cffi", | |
| # "pycryptodome", | |
| # "xclienttransaction", | |
| # ] | |
| # /// |
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 bash | |
| set -eu | |
| if [[ $# -eq 0 ]]; then | |
| echo "Usage: $0 [-d] [-s] [-o output_dir] files..." | |
| echo "Options:" | |
| echo " -d Delete original files after processing (default: off)" | |
| echo " -s Downsample to 44100 Hz if applicable (default: off)" | |
| echo " -o dir Set output directory (default: aac)" |