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 | |
| for file in *.aaxc; do | |
| base_name="${file%.*}" | |
| voucher_file="${base_name}.voucher" | |
| m4b_file="${base_name}.m4b" | |
| if [[ -f "$voucher_file" ]]; then | |
| audible_key=$(jq -r '.content_license.license_response.key' "$voucher_file") | |
| audible_iv=$(jq -r '.content_license.license_response.iv' "$voucher_file") |
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 | |
| DRIVE=$1 | |
| FILENAME=$2 | |
| INIT_TIME=$3 | |
| DISK_CHECKSUM_FILE="${FILENAME}.disk.sha512" | |
| ISO_CHECKSUM_FILE="${FILENAME}.iso.sha512" | |
| echo "Closing tray, then waiting some time for disc to initialize" | |
| drutil tray close |
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
| function removeSessionTimerVisuals() { | |
| document.getElementById("sessionTimer").remove(); | |
| } | |
| function fixLayout() { | |
| document.getElementById("footer").remove(); | |
| } | |
| function pseudoInteract() { | |
| window.scrollBy(0, 1) |