Skip to content

Instantly share code, notes, and snippets.

View fschr's full-sized avatar
🤑
joan baez is my spirit mom

__ fschr

🤑
joan baez is my spirit mom
  • Lake Baikal
View GitHub Profile
@fschr
fschr / .tmux.conf
Created November 27, 2019 05:43
simple .tmux.conf with unix-style bindings
set -g prefix C-[
unbind C-b
bind C-[ send-prefix
set -g repeat-time 0
set -g escape-time 0
bind-key f select-pane -R
bind-key b select-pane -L
bind-key p select-pane -U
bind-key n select-pane -D
bind-key h split-window -h
@mmopy
mmopy / tornado-tcp-chat.py
Created April 27, 2012 18:13
A simple experiment in doing a TCP connection based chat server with Tornado.
'''
Created on Apr 27, 2012
Based on echo server http://tornadogists.org/1231481/ by phus
@author: mark-allen
'''
import logging