Skip to content

Instantly share code, notes, and snippets.

View chenqing's full-sized avatar
🎯
Focusing

chenqing chenqing

🎯
Focusing
View GitHub Profile
@chenqing
chenqing / tmux-cheatsheet.markdown
Created September 23, 2018 09:11 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@chenqing
chenqing / introrx.md
Created March 29, 2017 10:33 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@chenqing
chenqing / daemon.py
Created September 30, 2013 13:20 — forked from jamiesun/daemon.py
#! /usr/bin/env python2.7
#encoding:utf-8
#@description:一个python守护进程的例子
#@tags:python,daemon
import sys
import os
import time
import atexit
from signal import SIGTERM