Skip to content

Instantly share code, notes, and snippets.

View drmext's full-sized avatar

drmext

  • OFFLINE
View GitHub Profile
@drmext
drmext / beyondcompare-macos-patcher.sh
Created October 12, 2025 00:48
beyondcompare macos
#!/bin/bash
if ! [ -d "/Applications/Beyond Compare.app" ]; then
echo "Beyond Compare.app not installed in /Applications"
exit 1
fi
if ! plutil -lint /Library/Preferences/com.apple.TimeMachine.plist >/dev/null; then
echo "This script requires your terminal app to have Full Disk Access."
echo "Add this terminal to the Full Disk Access list in System Preferences > Security & Privacy, quit the app, and re-run this script."
@drmext
drmext / ida-macos-patcher.sh
Created October 12, 2025 00:48
ida 9.2 macos
#!/bin/bash
ver=9.2
if ! [ -d "/Applications/IDA Professional ${ver}.app" ]; then
echo "IDA Professional ${ver}.app not installed in /Applications"
exit 1
fi
if ! plutil -lint /Library/Preferences/com.apple.TimeMachine.plist >/dev/null; then