start new:
tmux
start new with session name:
tmux new -s myname
| #!/bin/sh | |
| STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep ".jsx\{0,1\}$" | grep 'xometry_webapp/src/js') | |
| ESLINT="$(git rev-parse --show-toplevel)/xometry_webapp/node_modules/.bin/eslint" | |
| if [[ "$STAGED_FILES" = "" ]]; then | |
| exit 0 | |
| fi | |
| PASS=true |
| <?php | |
| // have to add that opening tag to get syntax highlighting... ¯\_(ツ)_/¯ | |
| /** | |
| * Prevent update notification for plugin | |
| * http://www.thecreativedev.com/disable-updates-for-specific-plugin-in-wordpress/ | |
| * Place in theme functions.php or at bottom of wp-config.php | |
| */ | |
| function disable_plugin_updates( $value ) { |
| javascript:(function(){ | |
| var w=window, | |
| d=document, | |
| pageSelectedTxt=w.getSelection?w.getSelection():(d.getSelection)?d.getSelection():(d.selection?d.selection.createRange().text:0), | |
| pageTitle=d.title, | |
| pageUri=w.location.href, | |
| tmplt=""; | |
| tmplt="["+pageTitle+"]("+pageUri+")\n\n"; | |
| if(pageSelectedTxt!="") { | |
| pageSelectedTxt=">%20"+pageSelectedTxt; |
| wrap any function in | |
| javascript: (function () { | |
| // javascript goes here | |
| })(); | |
| minify and then create a bookmark with the URL as the minified JavaScript | |
| // grayscale all images without an alt tag | |
| const css = document.createElement("style"); |