(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Sat, 22 Dec 2012 23:34:58 GMT till Sun, 22 Dec 2013 23:34:58 GMT.
Only first 1000 GitHub users according to the count of followers are taken. This is because of limitations of GitHub search. Sorting algo in pseudocode:
githubUsers
.filter((user) -> user.followers > 229)
This XML file does not appear to have any style information associated with it. The document tree is shown below. | |
<opml version="1.0"> | |
<head> | |
<title> | |
Subscriptions of find from Inoreader [https://www.inoreader.com] | |
</title> | |
</head> | |
<body> | |
<outline text="Blogs" title="Blogs"> | |
<outline text="cgnail's weblog" title="cgnail's weblog" type="rss" xmlUrl="http://cgnail.github.io/atom.xml" htmlUrl="http://cgnail.github.io/"/> |
# luna_pinyin.custom.yaml | |
# save it to: | |
# ~/.config/ibus/rime (linux) | |
# ~/Library/Rime (macos) | |
# %APPDATA%\Rime (windows) | |
patch: | |
"key_binder/bindings": | |
- { when: paging, accept: bracketleft, send: Page_Up } | |
- { when: has_menu, accept: bracketright, send: Page_Down } |
# Rime dictionary | |
# encoding: utf-8 | |
# | |
# Wubi Pinyin Extended Dictionary(emoji) - 五笔拼音擴充詞庫(表情) | |
# | |
# by @lucifr | |
# based on https://gist.github.com/lembacon/4593540 & http://www.jianshu.com/p/ef2d9442fb0c | |
# | |
# 部署位置: | |
# ~/.config/ibus/rime (Linux) |
//Description: 银行卡号Luhm校验算法 | |
//Luhm校验规则:16位银行卡号(19位通用): | |
// 1.将未带校验位的 15(或18)位卡号从右依次编号 1 到 15(18),位于奇数位号上的数字乘以 2。 | |
// 2.将奇位乘积的个十位全部相加,再加上所有偶数位上的数字。 | |
// 3.将加法和加上校验位能被 10 整除。 | |
//bankno位银行卡号 | |
function luhmCheck(bankno){ |
var re = /([\[\]\,.?"\(\)+_*\/\\&\$#^@!%~`<>:;\{\}?,。·!¥……()+{}【】、|《》]|(?!\s)'\s+|\s+'(?!\s))/ig; | |
content.replace(re, ''); |
# 自己习惯用 C-x 作为prefix | |
## 系统操作(session) | |
s list all sessions | |
$ rename | |
## 窗口操作 | |
c create | |
, rename | |
<Num> switch | |
& close |