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 | |
set -euo pipefail | |
# Run shellcheck against any files that appear to be shell script based on | |
# filename or `file` output | |
# Exclude *.ps1 files because shellcheck doesn't support them | |
# Exclude hooks and config because the handlebars syntax confuses shellcheck | |
# Exclude the following shellcheck issues since they're pervasive and innocuous: | |
# https://github.com/koalaman/shellcheck/wiki/SC1008 |
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
sudo kmutil load -p /Library/Extensions/UAD2System.kext |
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
var allowPaste = function(e){ | |
e.stopImmediatePropagation(); | |
return true; | |
}; | |
document.addEventListener('paste', allowPaste, true); |
OlderNewer