- E. Dunham
- DevOps for Mozilla Research (mostly Python)
- Rust Community Team member
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
| # GNU Screen - main configuration file | |
| # All other .screenrc files will source this file to inherit settings. | |
| # Author: Christian Wills - cwills.sys@gmail.com | |
| # Allow bold colors - necessary for some reason | |
| attrcolor b ".I" | |
| # Tell screen how to set colors. AB = background, AF=foreground | |
| termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm' |
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 python | |
| from __future__ import print_function | |
| from __future__ import unicode_literals | |
| import argparse | |
| import sys | |
| import traceback | |
| import opml |
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
| https://i.imgur.com/XEh6nAK.gifv | |
| https://media.giphy.com/media/rDroB384ydCvK/giphy.gif | |
| http://reactiongifs.me/wp-content/uploads/2014/05/leaving-the-office-on-friday-scrubs-turk-dance-donald-faison.gif |
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
| from __future__ import print_function | |
| from pprint import pprint | |
| import json | |
| import boto3 | |
| print('Loading function') | |
| asg = boto3.client('autoscaling') |
- sdejean-dvorak-custom
- first pass, insprired by TypeMatrix
- double PrtScr
- https://keyboard-configurator.massdrop.com/ext/ergodox/?referer=ZJS28K&hash=3971e638f7469a25243d9e96d6f9a0e4
- sdejean-dvorak-custom-2
- second pass
- LeftAlt moved inward
- second PrtScr removed (1u)
- https://keyboard-configurator.massdrop.com/ext/ergodox/?referer=ZJS28K&hash=cdb4e78cbfbc2e23a1ab3ac08ee9e54e
- sdejean-dvorak-custom-3
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
| # Install tmux on Centos release 6.5 | |
| # http://superuser.com/questions/738829/attempting-to-install-tmux-on-centos-6-4-or-centos-6-5-fails-with-error-evbuff | |
| # | |
| sudo -u root -i | |
| # READ THIS FIRST!!! | |
| # MAKE SURE YOU HAVE BUILD TOOLS/COMPILERS TO BUILD STUFF FROM SOURCES | |
| # yum groupinstall "Development Tools" | |
| # OR |