This script detects apps with not yet updated versions of Electron.
Repo: https://github.com/tkafka/detect-electron-apps-on-mac
See:
This script detects apps with not yet updated versions of Electron.
Repo: https://github.com/tkafka/detect-electron-apps-on-mac
See:
https://untrusted.website/@mr_daemon
This roughly describes the process I use to dump my old CDs to image files while attempting to retain as much of the original data as possible.
This guide is very terminal oriented but it should remain accessible.
This covers mostly data cds such as games and software, and has mixed
These are the steps I took on Linux Mint using the PS3 HDD decryption helper
Reference discussion: HDD mounting and decryption on Linux
The aim was to be able to:
| #! /usr/bin/env python3 | |
| # Modify 'Touché: The Adventures of the Fifth Musketeer' savegames to overcome | |
| # unsolvable puzzles due to logic errors in the original game script. | |
| # | |
| # At some point you may be stuck, because: | |
| # You can not take a flask any longer which is needed or you can not | |
| # leave the castle to do some puzzle to get a specific item. | |
| # | |
| # If this does ring a bell you have found the right place. |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>UnifiedBar</key> | |
| <dict> | |
| <key>DisclosureRequired</key> | |
| <string>ace440ac-b4f6-4b43-aade-02bba1589aef</string> | |
| <key>Enabled</key> | |
| <false/> |
| General Punctuation | |
| U+201x ‐ ‒ – — ― ‖ ‗ ‘ ’ ‚ ‛ “ ” „ ‟ | |
| U+202x † ‡ • ‣ ․ ‥ … ‧ | |
| U+203x ‰ ‱ ′ ″ ‴ ‵ ‶ ‷ ‸ ‹ › ※ ‼ ‽ ‾ ‿ | |
| U+204x ⁀ ⁁ ⁂ ⁃ ⁄ ⁅ ⁆ ⁇ ⁈ ⁉ ⁊ ⁋ ⁌ ⁍ ⁎ ⁏ | |
| U+205x ⁐ ⁑ ⁒ ⁓ ⁔ ⁕ ⁖ ⁗ ⁘ ⁙ ⁚ ⁛ ⁜ ⁝ ⁞ | |
| Arrows | |
| U+219x ← ↑ → ↓ ↔ ↕ ↖ ↗ ↘ ↙ ↚ ↛ ↜ ↝ ↞ ↟ | |
| U+21Ax ↠ ↡ ↢ ↣ ↤ ↥ ↦ ↧ ↨ ↩ ↪ ↫ ↬ ↭ ↮ ↯ |
| WAV.tcl { | |
| prep: osascript \ | |
| -e 'tell application "System Events"' \ | |
| -e ' tell process "Hex Fiend"' \ | |
| -e ' click pop up button 1 of window 1' \ | |
| -e ' click menu item "WAV" of menu 1 of pop up button 1 of window 1' \ | |
| -e ' end tell' \ | |
| -e 'end tell' | |
| } |
| #!/bin/bash | |
| echo "Building Debina 10 QEMU instance..." | |
| wget https://cdimage.debian.org/cdimage/ports/10.0/powerpc/iso-cd/debian-10.0-powerpc-NETINST-1.iso | |
| sudo apt install qemu | |
| # Create new disk for install | |
| qemu-img create -f qcow2 debian10.qcow2 2000M | |
| # Boot the install image | |
| qemu-system-ppc -L pc-bios -boot d -M mac99 -m 1024 -net nic,model=sungem -net user -hda debian10.qcow2 -cdrom ./debian-10.0-powerpc-NETINST-1.iso -g 1024x768x8 | |
| # Run the image | |
| qemu-system-ppc -L pc-bios -boot c -prom-env "boot-device=hd:,\yaboot" -prom-env "boot-args=conf=hd:,\yaboot.conf" \ |