Skip to content

Instantly share code, notes, and snippets.

View michaelwestphal's full-sized avatar
🖖
Vim long and prosper!

Michael Westphal michaelwestphal

🖖
Vim long and prosper!
View GitHub Profile
@michaelwestphal
michaelwestphal / re-enable-paste.js
Last active July 30, 2025 19:26
Re-enable paste
//
// For when those pesky sites decide that you shouldn't be allowed to paste into an input...
//
// https://developer.mozilla.org/en-US/docs/Web/API/Element/paste_event
document.addEventListener('paste', (e) => {
e.stopImmediatePropagation();
return true;
}, true);
// Ditto: copy
@sindresorhus
sindresorhus / post-merge
Last active December 15, 2025 09:49
git hook to run a command after `git pull` if a specified file was changed.In this example it's used to run `npm install` if package.json changed and `bower install` if `bower.json` changed.Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`.
#!/usr/bin/env bash
# MIT © Sindre Sorhus - sindresorhus.com
# git hook to run a command after `git pull` if a specified file was changed
# Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`.
changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)"
check_run() {
echo "$changed_files" | grep --quiet "$1" && eval "$2"