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
document.querySelectorAll(".video-class")[0].playbackRate = 1.5; |
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
-----BEGIN PGP MESSAGE----- | |
Version: GnuPG v1 | |
hQIMAwU5YHxbmW0aAQ//Y8EhAUPRRnBYfPW3vobzDT38lNlPsa4UqNMGEKhXmiyE | |
v9PMxggsSYqYc5nfKDfoW/PM9aXrb41H1ZqkWbgTFWkTmdtPe8jGY1s3XFYCHfsG | |
Aw+LCAeQgR3xnmGY3AqqMSBVTiYc1EHGHtfxXj2p1SZQdNyPNPt6N4YInxrEXkho | |
iEBcCHM4J4Cp+L8CeCLTlA+vXOKDbO2ASFFLDDgn2kAaBSpBAR6r5TsmTUg2p5tN | |
vGIbhHAfDFk8ec4u5lC7B6CjYCpdgbZMG2yp1+JuAjnt1WqenpcrTxMgt9Morte7 | |
lrKCD4DPf0lP7oa+68DNZEZB7kYYTdWSlXxBbbqV58HmmrypQltbteKA62dv6vUz | |
QQcM3cuRrAWRWiDmg2bOMpvZYvY2HSMse0lqyW3G3bapMWwls3AJSjwyhYy8esgF |
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
[ { row: 1, column: 'A', content: ' ' }, | |
{ row: 1, | |
column: 'B', | |
content: 'Primary Prep Means:\n• select main course by Wednesday\n• select side dishes by Wednesday\n• work with Rob and Nikki to prepare shopping list by Wednesday\n• recruit prep helpers\n• prepare the m | |
eal by noon on your Friday' }, | |
{ row: 1, | |
column: 'D', | |
content: 'Primary Cleaner Means:\n• recruit cleaning helpers\n• all dishes done\n• diswasher loaded and run\n• kitchen area cleaned (counters/floor/etc)\n• chill area cleaned (tables/floor/etc)\n• extra fo | |
od stored away' }, | |
{ row: 2, column: 'A', content: 'Date' }, |
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
;; turn on flychecking globally | |
(add-hook 'after-init-hook #'global-flycheck-mode) | |
(setq-default flycheck-disabled-checkers (list 'javascript-jshint 'emacs-lisp-checkdoc 'emacs-lisp 'json-jsonlist)) | |
;; use eslint with web-mode for jsx files | |
(flycheck-add-mode 'javascript-eslint 'web-mode) |
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
(global-set-key (kbd "C-SPC k d") (lambda() | |
"shells out to date to return a formatted date string at point" | |
(interactive) | |
(shell-command "date +%Y-%m-%d-%I:%M" t))) |
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
;;; Directory Local Variables | |
;;; For more information see (info "(emacs) Directory Variables") | |
((nil | |
(evil-shift-width . 4) | |
(tab-width . 4)) | |
(css-mode | |
(css-indent-offset . 4)) | |
(js2-mode | |
(js2-basic-offset . 4)) |
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
(menu-bar-mode -1) |
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
if [ -n "$INSIDE_EMACS" ]; then | |
export TERM=xterm-256color | |
# export LANG='en_US.UTF-8' | |
# export LC_ALL="en_US.UTF-8" | |
export ZSH_THEME="minimal" | |
export PROMPT_COMMAND="" | |
fi |