Skip to content

Instantly share code, notes, and snippets.

@sdejean
sdejean / .screenrc-main-example
Created February 20, 2021 20:17 — forked from ChrisWills/.screenrc-main-example
A nice default screenrc
# 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'
#!/usr/bin/env python
from __future__ import print_function
from __future__ import unicode_literals
import argparse
import sys
import traceback
import opml

Starting Rust from a Scripting Background

Intro

  • E. Dunham
    • DevOps for Mozilla Research (mostly Python)
    • Rust Community Team member

Links

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
from __future__ import print_function
from pprint import pprint
import json
import boto3
print('Loading function')
asg = boto3.client('autoscaling')
@sdejean
sdejean / ergodox-mods-sdejean-dvorak-custom.md
Last active August 19, 2016 09:26
ErgoDox layout changes
# 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