Skip to content

Instantly share code, notes, and snippets.

View wyw's full-sized avatar

Wu Yuanwei wyw

  • 10:10 (UTC +08:00)
View GitHub Profile
@wyw
wyw / tmux-cheatsheet.markdown
Created September 21, 2017 06:46 — forked from ryerh/tmux-cheatsheet.markdown
Tmux 快捷键 & 速查表

Tmux 快捷键 & 速查表

启动新会话:

tmux [new -s 会话名 -n 窗口名]

恢复会话:

tmux at [-t 会话名]
@wyw
wyw / pimpl.cpp
Created June 14, 2017 11:08 — forked from cloudwu/pimpl.cpp
My version of pimpl
// My version of pimpl ([email protected])
// See http://en.cppreference.com/w/cpp/language/pimpl
#include <iostream>
// interface (widget.h)
class widget {
struct impl;
public:
static widget* create(int); // replacement of new