yshalsager's Channel
Открыть в Telegram
A channel where you can find @yshalsager's projects and its updates. https://yshalsager.com/en/
Больше2 566
Подписчики
+124 часа
+167 дней
+2830 дней
Архив постов
2 566
Repost from XM Firmware Updater
Xiaomi Flashable Firmware Creator GUI v2.3.19
Highlights
• Uses Xiaomi Flashable Firmware Creator 2.3.3 and routes package generation through the payload-aware flashing-script path.
• Fixes issue #388 for GUI-generated payload/A/B firmware: packages now contain the architecture-neutral recovery shell updater and work on ARM64-only recoveries.
• Preserves legacy non-payload package behavior.
https://github.com/XiaomiFirmwareUpdater/xiaomi-flashable-firmware-creator-gui/releases/tag/v2.3.19
2 566
Repost from XM Firmware Updater
Xiaomi Flashable Firmware Creator v2.3.3
Highlights
• Fixes #388: payload/A/B firmware packages now use an architecture-neutral recovery shell updater instead of the bundled 32-bit ARM executable, allowing installation on ARM64-only recoveries.
• Validates A/B OTA metadata, target device, active slot, image integrity, partition mappings, capacity, and writable state before the first partition write.
• Flashes the inactive slot first, then the active slot, using durable writes and exact-length SHA-256 readback verification.
• Restores read-only partition state on success or failure and aborts if block-device identity changes.
• Preserves legacy non-payload ROM updater binaries unchanged.
• Detects payload ROMs only when the archive contains an exact payload.bin entry.
https://github.com/XiaomiFirmwareUpdater/xiaomi-flashable-firmware-creator/releases/tag/v2.3.3
2 566
Repost from Hacker News
Thinking in Python (Score: 150+ in 13 hours)
Link: https://readhacker.news/s/73jgc
Comments: https://readhacker.news/c/73jgc
2 566
Repost from Hacker News
HTML Can Do That (Score: 157+ in 1 day)
Link: https://readhacker.news/s/736EB
Comments: https://readhacker.news/c/736EB
2 566
Repost from Hacker News
PostgreSQL for Everything (🔥 Score: 153+ in 3 hours)
Link: https://readhacker.news/s/736dr
Comments: https://readhacker.news/c/736dr
2 566
Open-source Islamic platform for adhkar, Quran reading, search, and daily progress.
https://kunuz.net/en/apps/muttasiq
2 566
Managing macOS apps with mise
Mise downloads GitHub release assets, but it does not install DMG applications into
/Applications. Add this custom global task to ~/.config/mise/config.toml:
[tasks."macos:install-dmg-app"]
hide = true
run = '''
set -euo pipefail
install_path="${MISE_TOOL_INSTALL_PATH:?MISE_TOOL_INSTALL_PATH is required}"
dmg_pattern="${MACOS_DMG_PATTERN:-*.dmg}"
app_pattern="${MACOS_APP_PATTERN:-*.app}"
dmg="$(find "$install_path" -maxdepth 1 -name "$dmg_pattern" -type f -print -quit)"
app_root="$install_path"
if [ -n "$dmg" ]; then
mount="$(hdiutil attach "$dmg" -nobrowse -readonly |
awk '/\/Volumes\// {print substr($0, index($0, "/Volumes/")); exit}')"
cleanup() {
hdiutil detach "$mount" -quiet 2>/dev/null || true
}
trap cleanup EXIT
app_root="$mount"
fi
app="$(find "$app_root" -maxdepth 1 -name "$app_pattern" -type d -print -quit)"
[ -n "$app" ] || { echo "No .app found in $app_root"; exit 1; }
app_name="${MACOS_APP_NAME:-$(basename "$app")}"
case "$app_name" in
*.app) ;;
*) app_name="$app_name.app" ;;
esac
ditto "$app" "/Applications/$app_name"
'''
Then declare apps using mise’s GitHub backend:
[tools."github:logseq/logseq"]
version = "2.0.1"
asset_pattern = "Logseq-darwin-arm64-{{ version }}.dmg"
postinstall = "mise run --skip-tools --raw macos:install-dmg-app"
For ZIP releases containing an .app:
asset_pattern = "AltTab-*.zip"
strip_components = 0
postinstall = "mise run --skip-tools --raw macos:install-dmg-app"
Install or upgrade:
mise install
mise upgrade2 566
E-Book Converter Bot has been updated
• EPUB: support legacy footnote layouts
• expand office input support with anydoc
Bot currently supports 62 input formats and 31 output formats.
• calibre: v9.12.0
• pandoc: v3.10.1
• kfx_input: 2.33.0
• kfx_output: 2.19.0
• kindle_previewer: 3.106.0 (2026-07-09)
Try the bot new update: @ebook_converter_bot
If you like my work, you may consider supporting it via a donation. A donation was never necessary, but It's making life easier for me and guarantees paying server costs as well as keeping projects active and without annoying ads. My works are free and open-source, that cost money, time, and efforts. You can do this using GitHub Sponsors, LibrePay, or PayPal.
Stay tuned for new updates!
2 566
Quran Quick Insert
Search, copy, and insert Quran ayahs or ranges from Raycast. Quran text is bundled locally, so search works offline.
https://www.raycast.com/yshalsager/quran-quick-insert
2 566
Quran Quick Insert
Search, copy, and insert Quran ayahs or ranges from Raycast. Quran text is bundled locally, so search works offline.
https://www.raycast.com/yshalsager/quran-quick-insert
2 566
Repost from Hacker News
Microsoft Can Track Users via a Windows Device ID (Score: 156+ in 4 hours)
Link: https://readhacker.news/s/6XY5W
Comments: https://readhacker.news/c/6XY5W
