$argon2id$v=19$m=512,t=256,p=1$JmElAr4VIkI4QUWhr+yvdw$7hP62a2hhpllyVQ/4wpVWCbm1a2cv1Ryc5pBfQNFHzg
I hereby claim:
- I am kwvg on github.
- I am kittywhiskers (https://keybase.io/kittywhiskers) on keybase.
- I have a public key ASDcRWlyewkUsfCo3empDbExKw3aOpw9CIj_JX5bpYsavQo
To claim this, I am signing this object:
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 | |
| remove() { | |
| entry="$1" | |
| echo -ne "Removing $entry [" | |
| sudo rm -rf "$entry" | |
| if [[ ! -e "$entry" ]]; then | |
| echo -ne "OK" | |
| else | |
| echo -ne "FAILED" |
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
| <?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>com.apple.security.cs.allow-jit</key> | |
| <true/> | |
| <key>com.apple.security.cs.allow-unsigned-executable-memory</key> | |
| <true/> | |
| <key>com.apple.security.cs.allow-dyld-environment-variables</key> |
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 | |
| export TARGET_URL="https://opensource.apple.com/" | |
| export TARGET_REPO="https://github.com/apple" | |
| export TARGET_EXTENSION=".tar.gz" | |
| export WORKING_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" | |
| export COMMIT_AUTHOR="repogen" | |
| export USE_THREADS=8 | |
| # why are we doing this? |
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 | |
| cpuname=$(sysctl -n machdep.cpu.brand_string) | |
| # Patch Lightroom Classic first | |
| sudo perl -i -pe 's|\x90\x90\x90\x90\x56\xE8\x3A\x00|\x90\x90\x90\x90\x56\xE8\x1A\x00|sg' /Applications/Adobe\ Lightroom\ Classic/Adobe\ Lightroom\ Classic.app/Contents/Frameworks/CameraRaw.lrtoolkit/CameraRaw | |
| sudo perl -i -pe 's|\x90\x90\x90\x90\x56\xE8\x5A\x00|\x90\x90\x90\x90\x56\xE8\x3A\x00|sg' /Applications/Adobe\ Lightroom\ Classic/Adobe\ Lightroom\ Classic.app/Contents/Frameworks/CameraRaw.lrtoolkit/CameraRaw | |
| # Patch MMXCore and FastCore instances in all other applications | |
| find /Applications/Adobe* -type f -name "MMXCore" -print0 | sudo xargs -0 -I "{}" perl -i -pe 's|\x90\x90\x90\x90\x56\xE8\x5A\x00|\x90\x90\x90\x90\x56\xE8\x3A\x00|sg' "{}" |